Workaround fix for Xtensa (ESP8266) memory alignment exception error

Related issue: https://github.com/Samsung/jerryscript/issues/675

JerryScript-DCO-1.0-Signed-off-by: SaeHie Park saehie.park@samsung.com
This commit is contained in:
SaeHie Park 2015-12-01 11:02:19 +09:00
parent fe24452460
commit f574597a06

View File

@ -764,11 +764,11 @@ typedef struct
*/
typedef struct
{
/** Compressed pointer to next chunk */
mem_cpointer_t next_chunk_cp;
/** Characters */
lit_utf8_byte_t data[ sizeof (uint64_t) - sizeof (mem_cpointer_t) ];
/** Compressed pointer to next chunk */
mem_cpointer_t next_chunk_cp;
} ecma_collection_chunk_t;
/**