Eliminate 'is_stack_var' field of ecma_string_t

JerryScript-DCO-1.0-Signed-off-by: István Kádár ikadar@inf.u-szeged.hu
This commit is contained in:
István Kádár
2016-02-05 15:28:14 +01:00
committed by László Langó
parent 196e8196fc
commit e9a72ae1e9
3 changed files with 33 additions and 108 deletions
-4
View File
@@ -780,10 +780,6 @@ typedef struct ecma_string_t
/** Reference counter for the string */
unsigned int refs : CONFIG_ECMA_REFERENCE_COUNTER_WIDTH;
/** Flag indicating whether the string descriptor is placed
* in a stack variable (not in the heap) */
unsigned int is_stack_var : 1;
/** Where the string's data is placed (ecma_string_container_t) */
uint8_t container;