From: Xinchen Hui Date: Mon, 6 Jul 2015 07:24:51 +0000 (+0800) Subject: Reorder the conditions X-Git-Tag: php-7.0.0beta1~12^2~46 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=84e07b08bdb0c68d39189f128f713a3fe297a4b2;p=php Reorder the conditions --- diff --git a/Zend/zend_execute.h b/Zend/zend_execute.h index 2f8f637c64..e76492eee7 100644 --- a/Zend/zend_execute.h +++ b/Zend/zend_execute.h @@ -356,8 +356,8 @@ void zend_cleanup_unfinished_execution(zend_execute_data *execute_data, uint32_t } while (0) #define SKIP_EXT_OPLINE(opline) do { \ - while (UNEXPECTED((opline)->opcode <= ZEND_TICKS \ - && (opline)->opcode >= ZEND_EXT_STMT)) { \ + while (UNEXPECTED((opline)->opcode >= ZEND_EXT_STMT \ + && (opline)->opcode <= ZEND_TICKS)) { \ (opline)--; \ } \ } while (0)