]> granicus.if.org Git - php/commitdiff
Reorder the conditions
authorXinchen Hui <laruence@php.net>
Mon, 6 Jul 2015 07:24:51 +0000 (15:24 +0800)
committerXinchen Hui <laruence@php.net>
Mon, 6 Jul 2015 07:24:51 +0000 (15:24 +0800)
Zend/zend_execute.h

index 2f8f637c641daf5cc21afcbdef6a646634682633..e76492eee7fa040d0e55ab42780584849c50b8b8 100644 (file)
@@ -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)