1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 10:43:30 +02:00
Files
archived-php-src/ext/opcache/tests/opt/dce_004.phpt
T
Máté Kocsis 7aacc705d0 Add many missing closing PHP tags to tests
Closes GH-5958
2020-08-09 22:03:36 +02:00

35 lines
674 B
PHP

--TEST--
DCE 004: Elimination of assignment to non-escaping arrays
--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(int $x, int $y) {
$a = [$x];
$a[1] = $y;
$a = $y;
return $a;
}
?>
--EXPECTF--
$_main:
; (lines=1, args=0, vars=0, tmps=0)
; (after optimizer)
; %sdce_004.php:1-9
0000 RETURN int(1)
foo:
; (lines=4, args=2, vars=3, tmps=0)
; (after optimizer)
; %sdce_004.php:2-7
0000 CV0($x) = RECV 1
0001 CV1($y) = RECV 2
0002 CV2($a) = QM_ASSIGN CV1($y)
0003 RETURN CV2($a)