mirror of
https://github.com/php/php-src.git
synced 2026-04-20 06:21:12 +02:00
The do_fcall opcode may have been optimized away if an opcode like exit is present in the arguments. In that case the opcode scan would go past the end of the op array.
13 lines
182 B
PHP
13 lines
182 B
PHP
--TEST--
|
|
Exit in argument list
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
opcache.file_update_protection=0
|
|
opcache.jit_buffer_size=1M
|
|
--FILE--
|
|
<?php
|
|
var_dump(exit);
|
|
?>
|
|
--EXPECT--
|