mirror of
https://github.com/php/php-src.git
synced 2026-04-20 06:21:12 +02:00
For rationale, see #6787 Extensions migrated in part 3: * ftp * gmp * iconv * opcache * shmop
21 lines
300 B
PHP
21 lines
300 B
PHP
--TEST--
|
|
Bug #77743: Incorrect pi node insertion for jmpznz with identical successors
|
|
--EXTENSIONS--
|
|
opcache
|
|
--FILE--
|
|
<?php
|
|
|
|
function buggy($a) {
|
|
$id_country = $a;
|
|
if ($id_country === false) {
|
|
if (true) {
|
|
}
|
|
}
|
|
var_dump($id_country);
|
|
}
|
|
|
|
buggy(42);
|
|
?>
|
|
--EXPECT--
|
|
int(42)
|