From: Dmitry Stogov Date: Tue, 22 Dec 2015 18:31:28 +0000 (+0300) Subject: Fixed incorrect setting on 32-bit systems X-Git-Tag: php-7.0.3RC1~110^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a57a08e79133aa37372c9c997e17f63e479e792d;p=php Fixed incorrect setting on 32-bit systems --- diff --git a/ext/opcache/Optimizer/zend_optimizer.h b/ext/opcache/Optimizer/zend_optimizer.h index f4e441790f..edd3b004a8 100644 --- a/ext/opcache/Optimizer/zend_optimizer.h +++ b/ext/opcache/Optimizer/zend_optimizer.h @@ -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