xref: /php-src/ext/opcache/tests/jit/inc_006.phpt (revision c16ad918)
1--TEST--
2JIT INC: 006
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7opcache.protect_memory=1
8;opcache.jit_debug=257
9--EXTENSIONS--
10opcache
11--FILE--
12<?php
13function foo() {
14    $x = 1;
15    var_dump(++$x); // reg -> mem, mem
16    var_dump($x);
17}
18foo();
19?>
20--EXPECT--
21int(2)
22int(2)
23