From 0badfc08806bdab59c9db21100f6518e72396949 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Wed, 3 Jun 2020 18:14:51 +0300 Subject: [PATCH] Avoid useless register reload --- ext/opcache/jit/zend_jit_x86.dasc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/opcache/jit/zend_jit_x86.dasc b/ext/opcache/jit/zend_jit_x86.dasc index deb1e5a0d4..6076f9e94b 100644 --- a/ext/opcache/jit/zend_jit_x86.dasc +++ b/ext/opcache/jit/zend_jit_x86.dasc @@ -8776,7 +8776,7 @@ static int zend_jit_do_fcall(dasm_State **Dst, const zend_op *opline, const zend return 0; } - if (opline->opcode != ZEND_DO_ICALL) { + if (!trace && opline->opcode != ZEND_DO_ICALL) { | LOAD_IP_ADDR (opline + 1) } } -- 2.40.0