xref: /php-src/ext/opcache/tests/jit/loop_003.phpt (revision c16ad918)
1--TEST--
2JIT LOOP: 003 Incorrect dead IR edge elimination
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6--FILE--
7<?php
8function () {
9    $a = 0;
10    while (y) {
11        $a &= $y & $y;
12        if (y) die &("");
13     }
14};
15?>
16DONE
17--EXPECT--
18DONE
19