mirror of
https://github.com/php/php-src.git
synced 2026-03-30 20:22:36 +02:00
All these tests are meant to run with OPcache available, and some will even fail inevitably without it, so we add OPcache as SKIPIF requirement.
20 lines
298 B
PHP
20 lines
298 B
PHP
--TEST--
|
|
Bug #77743: Incorrect pi node insertion for jmpznz with identical successors
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
function buggy($a) {
|
|
$id_country = $a;
|
|
if ($id_country === false) {
|
|
if (true) {
|
|
}
|
|
}
|
|
var_dump($id_country);
|
|
}
|
|
|
|
buggy(42);
|
|
--EXPECT--
|
|
int(42)
|