1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 18:23:26 +02:00
Files
archived-php-src/ext/opcache/tests/jit/sub_001.phpt
T

21 lines
281 B
PHP

--TEST--
JIT SUB: 001
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.jit_buffer_size=32M
;opcache.jit_debug=257
--EXTENSIONS--
opcache
--FILE--
<?php
function foo($var) {
$res = $var - 1;
var_dump($res);
}
foo(42);
?>
--EXPECT--
int(41)