Skip to content

Commit ccf511a

Browse files
authored
new_target_object -> new_target_object_p (#4498)
Depends on #4478 JerryScript-DCO-1.0-Signed-off-by: Yonggang Luo luoyonggang@gmail.com
1 parent 69ce755 commit ccf511a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

jerry-core/vm/vm.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2698,15 +2698,15 @@ vm_loop (vm_frame_ctx_t *frame_ctx_p) /**< frame context */
26982698
}
26992699
case VM_OC_PUSH_NEW_TARGET:
27002700
{
2701-
ecma_object_t *new_target_object = JERRY_CONTEXT (current_new_target_p);
2702-
if (new_target_object == NULL)
2701+
ecma_object_t *new_target_object_p = JERRY_CONTEXT (current_new_target_p);
2702+
if (new_target_object_p == NULL)
27032703
{
27042704
*stack_top_p++ = ECMA_VALUE_UNDEFINED;
27052705
}
27062706
else
27072707
{
2708-
ecma_ref_object (new_target_object);
2709-
*stack_top_p++ = ecma_make_object_value (new_target_object);
2708+
ecma_ref_object (new_target_object_p);
2709+
*stack_top_p++ = ecma_make_object_value (new_target_object_p);
27102710
}
27112711
continue;
27122712
}

0 commit comments

Comments
 (0)