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