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_max_polymorphic_calls=0
8opcache.jit=tracing
9opcache.jit_hot_loop=64
10opcache.jit_hot_func=127
11opcache.jit_hot_return=8
12opcache.jit_hot_side_exit=8
13--EXTENSIONS--
14opcache
15--FILE--
16<?php
17include(__DIR__ . '/init_fcall_003.inc');
18for($a=1; $a<100; $a++){
19    f('1');
20    f('1');
21    f('1');
22}
23touch(__DIR__ . '/init_fcall_003.inc');
24opcache_invalidate(__DIR__ . '/init_fcall_003.inc', true);
25?>
26DONE
27--EXPECT--
28DONE
29