Skip to content

Commit 321d9d9

Browse files
committed
Fix OPcache build
`||` at the beginning of a line has special meaning for the DynAsm preprocessor.
1 parent 3d1b730 commit 321d9d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/opcache/jit/zend_jit_x86.dasc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11415,8 +11415,8 @@ static zend_regset zend_jit_get_scratch_regset(const zend_op *opline, const zend
1141511415
/* %r0 is used to check EG(vm_interrupt) */
1141611416
if (zend_jit_trigger == ZEND_JIT_ON_HOT_TRACE) {
1141711417
if (ssa_op == ssa->ops
11418-
&& (JIT_G(current_trace)->stop == ZEND_JIT_TRACE_STOP_LOOP
11419-
|| JIT_G(current_trace)->stop == ZEND_JIT_TRACE_STOP_RECURSIVE_CALL)) {
11418+
&& (JIT_G(current_trace)->stop == ZEND_JIT_TRACE_STOP_LOOP ||
11419+
JIT_G(current_trace)->stop == ZEND_JIT_TRACE_STOP_RECURSIVE_CALL)) {
1142011420
ZEND_REGSET_INCL(regset, ZREG_R0);
1142111421
}
1142211422
} else {

0 commit comments

Comments
 (0)