1--TEST-- 2JIT INC: 017 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 = true; 15 return ++$x; // reg -> reg, reg 16} 17var_dump(foo()); 18?> 19--EXPECTF-- 20Warning: Increment on type bool has no effect, this will change in the next major version of PHP in %sinc_017.php on line 4 21bool(true) 22