1--TEST-- 2JIT INIT_FCALL: 003 incorrect init fcall guard (fail with tracing JIT and --repeat 3) 3--INI-- 4opcache.enable=1 5opcache.enable_cli=1 6opcache.file_update_protection=0 7opcache.jit_buffer_size=1M 8opcache.jit_max_polymorphic_calls=0 9opcache.jit=tracing 10opcache.jit_hot_loop=64 11opcache.jit_hot_func=127 12opcache.jit_hot_return=8 13opcache.jit_hot_side_exit=8 14--EXTENSIONS-- 15opcache 16--FILE-- 17<?php 18include(__DIR__ . '/init_fcall_003.inc'); 19for($a=1; $a<100; $a++){ 20 f('1'); 21 f('1'); 22 f('1'); 23} 24touch(__DIR__ . '/init_fcall_003.inc'); 25opcache_invalidate(__DIR__ . '/init_fcall_003.inc', true); 26?> 27DONE 28--EXPECT-- 29DONE 30