Skip to content

Commit f3bf95e

Browse files
committed
Merge branch 'PHP-5.6' into PHP-7.0
* PHP-5.6: Fixed incorrect setting on 32-bit systems
2 parents 3e3d029 + a57a08e commit f3bf95e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/opcache/Optimizer/zend_optimizer.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
#define ZEND_OPTIMIZER_PASS_14 (1<<13)
4242
#define ZEND_OPTIMIZER_PASS_15 (1<<14) /* Collect constants */
4343

44-
#define ZEND_OPTIMIZER_ALL_PASSES 0xFFFFFFFF
44+
#define ZEND_OPTIMIZER_ALL_PASSES 0x7FFFFFFF
4545

46-
#define DEFAULT_OPTIMIZATION_LEVEL "0xFFFFBFFF"
46+
#define DEFAULT_OPTIMIZATION_LEVEL "0x7FFFBFFF"
4747

4848
#endif

0 commit comments

Comments
 (0)