]> granicus.if.org Git - php/commitdiff
Fixed incorrect setting on 32-bit systems
authorDmitry Stogov <dmitry@zend.com>
Tue, 22 Dec 2015 18:31:28 +0000 (21:31 +0300)
committerDmitry Stogov <dmitry@zend.com>
Tue, 22 Dec 2015 18:31:28 +0000 (21:31 +0300)
ext/opcache/Optimizer/zend_optimizer.h

index f4e441790f6a9446da896ff86c002cfd67390e8b..edd3b004a8aece9fbc39686fea713fca66d6d505 100644 (file)
@@ -41,8 +41,8 @@
 #define ZEND_OPTIMIZER_PASS_14         (1<<13)
 #define ZEND_OPTIMIZER_PASS_15         (1<<14)  /* Collect constants */
 
-#define ZEND_OPTIMIZER_ALL_PASSES      0xFFFFFFFF
+#define ZEND_OPTIMIZER_ALL_PASSES      0x7FFFFFFF
 
-#define DEFAULT_OPTIMIZATION_LEVEL  "0xFFFFBFFF"
+#define DEFAULT_OPTIMIZATION_LEVEL  "0x7FFFBFFF"
 
 #endif