xref: /PHP-8.3/ext/opcache/tests/jit/icall_001.phpt (revision 34f1fdc0)
1--TEST--
2JIT ICALL: 001
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7opcache.jit_buffer_size=1M
8;opcache.jit_debug=257
9--EXTENSIONS--
10opcache
11--FILE--
12<?php
13var_dump(true, 0, 42, -42, 0.0, 2.0,"hello", array());
14?>
15--EXPECT--
16bool(true)
17int(0)
18int(42)
19int(-42)
20float(0)
21float(2)
22string(5) "hello"
23array(0) {
24}
25