Skip to content

Commit 2fea4ef

Browse files
authored
Fix merge error (#18453)
1 parent 0eea5d3 commit 2fea4ef

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

ext/opcache/jit/zend_jit_trace.c

+1-3
Original file line numberDiff line numberDiff line change
@@ -8731,9 +8731,7 @@ int ZEND_FASTCALL zend_jit_trace_exit(uint32_t exit_num, zend_jit_registers_buf
87318731
if (EG(exception)) {
87328732
/* EX(opline) was overridden in zend_jit_trace_exit_stub(),
87338733
* and may be wrong when IP is reused. */
8734-
if (GCC_GLOBAL_REGS) {
8735-
EX(opline) = EG(exception_op);
8736-
}
8734+
EX(opline) = EG(exception_op);
87378735
return 0;
87388736
}
87398737
}

0 commit comments

Comments
 (0)