From: George Peter Banyard Date: Wed, 30 Sep 2020 05:15:04 +0000 (+0300) Subject: Removed duplicate conditions X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8d0b871bde7b6503274100d31b373636e40fda2c;p=php Removed duplicate conditions --- 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;