diff options
Diffstat (limited to 'ext/opcache/tests/jit/inc_001.phpt')
-rw-r--r-- | ext/opcache/tests/jit/inc_001.phpt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/opcache/tests/jit/inc_001.phpt b/ext/opcache/tests/jit/inc_001.phpt index 7010533e6b..c3807303e7 100644 --- a/ext/opcache/tests/jit/inc_001.phpt +++ b/ext/opcache/tests/jit/inc_001.phpt @@ -12,10 +12,10 @@ opcache.protect_memory=1 --FILE-- <?php function foo() { - $x = 1; - $x += 0; - ++$x; // mem -> mem - var_dump($x); + $x = 1; + $x += 0; + ++$x; // mem -> mem + var_dump($x); } foo(); --EXPECT-- |