Skip to content

Commit 0badfc0

Browse files
committed
Avoid useless register reload
1 parent 698bd59 commit 0badfc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit_x86.dasc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8776,7 +8776,7 @@ static int zend_jit_do_fcall(dasm_State **Dst, const zend_op *opline, const zend
87768776
return 0;
87778777
}
87788778

8779-
if (opline->opcode != ZEND_DO_ICALL) {
8779+
if (!trace && opline->opcode != ZEND_DO_ICALL) {
87808780
| LOAD_IP_ADDR (opline + 1)
87818781
}
87828782
}

0 commit comments

Comments
 (0)