Skip to content

Commit 56d521e

Browse files
committed
Fix bogus lea vs mov
1 parent bdcda90 commit 56d521e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit_ir.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16810,7 +16810,7 @@ static ir_ref jit_frameless_observer_end(zend_jit_ctx *jit, struct jit_frameless
1681016810
ir_ref rx = jit_IP(jit);
1681116811
jit_observer_fcall_end(jit, rx, res_addr);
1681216812

16813-
ir_STORE(jit_EG(current_execute_data), jit_CALL(rx, prev_execute_data));
16813+
ir_STORE(jit_EG(current_execute_data), ir_LOAD_A(jit_CALL(rx, prev_execute_data)));
1681416814

1681516815
ir_ref allocated_path = IR_UNUSED;
1681616816

0 commit comments

Comments
 (0)