Skip to content

Commit 5c1c8f1

Browse files
committed
Merge branch 'PHP-7.0'
* PHP-7.0: Fixed incorrect setting on 32-bit systems
2 parents 6e6280a + f3bf95e commit 5c1c8f1

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,9 +41,9 @@
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

4949
#define ZEND_DUMP_AFTER_PASS_1 ZEND_OPTIMIZER_PASS_1

0 commit comments

Comments
 (0)