363d1bb20f
This change is mostly for FB internal organizational reasons. Building is not effected beyond the fact that the target now lands in hphp/hhvm/hhvm rather than src/hhvm/hhvm.
30 linhas
283 B
PHP
30 linhas
283 B
PHP
<?php
|
|
|
|
function f() {
|
|
$a = true;
|
|
$b = true;
|
|
$i = 0;
|
|
|
|
if($a) {
|
|
if($b) {
|
|
$i = 1;
|
|
} else {
|
|
$i = 2;
|
|
}
|
|
} else {
|
|
if($b) {
|
|
$i = 3;
|
|
} else {
|
|
$i = 4;
|
|
}
|
|
}
|
|
}
|
|
|
|
function main() {
|
|
for($i = 0; $i < 1000; $i++) {
|
|
f();
|
|
}
|
|
}
|
|
main();
|
|
|