summaryrefslogtreecommitdiff
path: root/ext/opcache/tests/opt/dce_001.phpt
blob: d3578f1791bd3b049b93260be8c80d986b2744e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
--TEST--
DCE 001: Remove dead computation after constants propagation
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.optimization_level=-1
opcache.opt_debug_level=0x20000
opcache.preload=
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
function foo(string $s1, string $s2, string $s3, string $s4) {
    $x = ($s1 . $s2) . ($s3 . $s4);
    $x = 0;
    return $x;
}
?>
--EXPECTF--
$_main:
     ; (lines=1, args=0, vars=0, tmps=0)
     ; (after optimizer)
     ; %sdce_001.php:1-8
0000 RETURN int(1)

foo:
     ; (lines=5, args=4, vars=4, tmps=0)
     ; (after optimizer)
     ; %sdce_001.php:2-6
0000 CV0($s1) = RECV 1
0001 CV1($s2) = RECV 2
0002 CV2($s3) = RECV 3
0003 CV3($s4) = RECV 4
0004 RETURN int(0)