Use correct flag when checking for static snapshot in arguments object (#4343)
JerryScript-DCO-1.0-Signed-off-by: Peter Gal pgal.usz@partner.samsung.com
This commit is contained in:
@@ -112,7 +112,8 @@ ecma_op_create_arguments_object (vm_frame_ctx_shared_args_t *shared_p, /**< shar
|
|||||||
ECMA_SET_INTERNAL_VALUE_POINTER (mapped_arguments_p->u.byte_code, bytecode_data_p);
|
ECMA_SET_INTERNAL_VALUE_POINTER (mapped_arguments_p->u.byte_code, bytecode_data_p);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!(bytecode_data_p->status_flags & ECMA_ARGUMENTS_OBJECT_STATIC_BYTECODE))
|
/* Static snapshots are not ref counted. */
|
||||||
|
if ((bytecode_data_p->status_flags & CBC_CODE_FLAGS_STATIC_FUNCTION) == 0)
|
||||||
{
|
{
|
||||||
ecma_bytecode_ref ((ecma_compiled_code_t *) bytecode_data_p);
|
ecma_bytecode_ref ((ecma_compiled_code_t *) bytecode_data_p);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user