Skip to content

Commit dab832d

Browse files
committed
Fix bogus lea vs mov
1 parent 9d0cffe commit dab832d

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
@@ -17083,7 +17083,7 @@ static ir_ref jit_frameless_observer_end(zend_jit_ctx *jit, struct jit_frameless
1708317083
ir_ref rx = jit_IP(jit);
1708417084
jit_observer_fcall_end(jit, rx, res_addr);
1708517085

17086-
ir_STORE(jit_EG(current_execute_data), jit_CALL(rx, prev_execute_data));
17086+
ir_STORE(jit_EG(current_execute_data), ir_LOAD_A(jit_CALL(rx, prev_execute_data)));
1708717087

1708817088
ir_ref allocated_path = IR_UNUSED;
1708917089

0 commit comments

Comments
 (0)