1--TEST-- 2GH-13232 (Segmentation fault will be reported when JIT is off but JIT_debug is still on) 3--INI-- 4opcache.enable=1 5opcache.enable_cli=1 6opcache.jit=disable 7opcache.jit_debug=0xfffff 8--FILE-- 9<?php 10echo "Done\n"; 11?> 12--EXPECT-- 13Done 14