From 8d0b871bde7b6503274100d31b373636e40fda2c Mon Sep 17 00:00:00 2001 From: George Peter Banyard Date: Wed, 30 Sep 2020 08:15:04 +0300 Subject: [PATCH] Removed duplicate conditions --- ext/opcache/jit/zend_jit_x86.dasc | 2 -- 1 file changed, 2 deletions(-) diff --git a/ext/opcache/jit/zend_jit_x86.dasc b/ext/opcache/jit/zend_jit_x86.dasc index 0aab3961cb..fd04435818 100644 --- a/ext/opcache/jit/zend_jit_x86.dasc +++ b/ext/opcache/jit/zend_jit_x86.dasc @@ -11297,7 +11297,6 @@ static zend_bool zend_jit_may_avoid_refcounting(const zend_op *opline) switch (opline->opcode) { case ZEND_FETCH_OBJ_FUNC_ARG: if (!JIT_G(current_frame) || - !JIT_G(current_frame) || !JIT_G(current_frame)->call->func || !TRACE_FRAME_IS_LAST_SEND_BY_VAL(JIT_G(current_frame)->call)) { return 0; @@ -11313,7 +11312,6 @@ static zend_bool zend_jit_may_avoid_refcounting(const zend_op *opline) break; case ZEND_FETCH_DIM_FUNC_ARG: if (!JIT_G(current_frame) || - !JIT_G(current_frame) || !JIT_G(current_frame)->call->func || !TRACE_FRAME_IS_LAST_SEND_BY_VAL(JIT_G(current_frame)->call)) { return 0; -- 2.50.1