1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 17:52:16 +01:00
Files
archived-php-src/ext/opcache/tests/jit/loop_003.phpt
2023-11-07 11:41:23 +03:00

20 lines
272 B
PHP

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