1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Fix merge error (#18453)

This commit is contained in:
Arnaud Le Blanc
2025-04-29 17:06:59 +02:00
committed by GitHub
parent 0eea5d31e0
commit 2fea4efa8f

View File

@@ -8731,9 +8731,7 @@ int ZEND_FASTCALL zend_jit_trace_exit(uint32_t exit_num, zend_jit_registers_buf
if (EG(exception)) {
/* EX(opline) was overridden in zend_jit_trace_exit_stub(),
* and may be wrong when IP is reused. */
if (GCC_GLOBAL_REGS) {
EX(opline) = EG(exception_op);
}
EX(opline) = EG(exception_op);
return 0;
}
}