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 64be98e commit b25a1a7Copy full SHA for b25a1a7
ext/opcache/jit/zend_jit.c
@@ -3049,6 +3049,8 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_runtime_jit(ZEND_OPCODE_HANDLE
3049
#if GCC_GLOBAL_REGS
3050
zend_execute_data *execute_data;
3051
zend_op *opline;
3052
+#else
3053
+ const zend_op *orig_opline = opline;
3054
#endif
3055
3056
execute_data = EG(current_execute_data);
@@ -3094,7 +3096,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_runtime_jit(ZEND_OPCODE_HANDLE
3094
3096
3095
3097
return; // ZEND_VM_CONTINUE
3098
#else
- return op_array->opcodes; // ZEND_VM_CONTINUE
3099
+ return orig_opline; // ZEND_VM_CONTINUE
3100
3101
}
3102
0 commit comments