1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/opcache/tests/jit/loop_003.phpt
2024-01-15 09:39:13 +01:00

19 lines
244 B
PHP

--TEST--
JIT LOOP: 003 Incorrect dead IR edge elimination
--INI--
opcache.enable=1
opcache.enable_cli=1
--FILE--
<?php
function () {
$a = 0;
while (y) {
$a &= $y & $y;
if (y) die &("");
}
};
?>
DONE
--EXPECT--
DONE