mirror of
https://github.com/php/php-src.git
synced 2026-04-29 03:03:26 +02:00
d417072ebe
Closes GH-13234.
14 lines
239 B
PHP
14 lines
239 B
PHP
--TEST--
|
|
GH-13232 (Segmentation fault will be reported when JIT is off but JIT_debug is still on)
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
opcache.jit=disable
|
|
opcache.jit_debug=0xfffff
|
|
--FILE--
|
|
<?php
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECT--
|
|
Done
|