1--TEST--
2JIT HOT_FUNC: 002
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7opcache.jit=tracing
8opcache.jit_hot_func=2
9;opcache.jit_debug=257
10--EXTENSIONS--
11opcache
12--FILE--
13<?php
14function foo() {
15  var_dump("hello");
16}
17foo();
18foo();
19foo();
20?>
21--EXPECT--
22string(5) "hello"
23string(5) "hello"
24string(5) "hello"
25