We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e00982e commit 42f60baCopy full SHA for 42f60ba
ext/opcache/jit/zend_jit.c
@@ -3079,6 +3079,8 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_runtime_jit(ZEND_OPCODE_HANDLE
3079
#if GCC_GLOBAL_REGS
3080
zend_execute_data *execute_data;
3081
zend_op *opline;
3082
+#else
3083
+ const zend_op *orig_opline = opline;
3084
#endif
3085
3086
execute_data = EG(current_execute_data);
@@ -3124,7 +3126,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_runtime_jit(ZEND_OPCODE_HANDLE
3124
3126
3125
3127
return; // ZEND_VM_CONTINUE
3128
#else
- return op_array->opcodes; // ZEND_VM_CONTINUE
3129
+ return orig_opline; // ZEND_VM_CONTINUE
3130
3131
}
3132
0 commit comments