xref: /PHP-7.4/ext/opcache/tests/opt/dce_003.phpt (revision 12edc453)
1--TEST--
2DCE 003: Assignment elimination (without FREE)
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.optimization_level=-1
7opcache.opt_debug_level=0x20000
8opcache.preload=
9--SKIPIF--
10<?php require_once('skipif.inc'); ?>
11--FILE--
12<?php
13function foo(int $a) {
14	$b = $a += 3;
15	return $a;
16}
17?>
18--EXPECTF--
19$_main: ; (lines=1, args=0, vars=0, tmps=0)
20    ; (after optimizer)
21    ; %sdce_003.php:1-7
22L0 (7):     RETURN int(1)
23
24foo: ; (lines=3, args=1, vars=1, tmps=0)
25    ; (after optimizer)
26    ; %sdce_003.php:2-5
27L0 (2):     CV0($a) = RECV 1
28L1 (3):     CV0($a) = ADD CV0($a) int(3)
29L2 (4):     RETURN CV0($a)
30