xref: /PHP-8.1/ext/opcache/tests/jit/cmp_004.phpt (revision e9f783fc)
1--TEST--
2JIT CMP: 004 Comparisons inside conditional statement
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7opcache.jit_buffer_size=1M
8opcache.protect_memory=1
9--EXTENSIONS--
10opcache
11--FILE--
12<?php
13function foo(bool $test, int $x) {
14    if (($test ? $x >= 1 : $x > 1)) {
15        return 1;
16    }
17    return 0;
18}
19var_dump(foo(true, 9));
20?>
21--EXPECT--
22int(1)
23