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