Packing ecma_object_t to 8 bytes.

This commit is contained in:
Ruben Ayrapetyan
2014-08-29 17:38:05 +04:00
parent 8e14f32806
commit 1d02085dc6
8 changed files with 364 additions and 180 deletions
+1 -1
View File
@@ -517,7 +517,7 @@ ecma_is_lexical_environment_global (ecma_object_t *lex_env_p) /**< lexical envir
JERRY_ASSERT(lex_env_p != NULL
&& ecma_is_lexical_environment (lex_env_p));
ecma_lexical_environment_type_t type = lex_env_p->u.lexical_environment.type;
ecma_lexical_environment_type_t type = ecma_get_lex_env_type (lex_env_p);
bool ret_value = false;