mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
19 lines
244 B
PHP
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
|