### Description The following code: ```php <?php function foo() { echo "hello"; } foo(); ``` ``` php -d opcache.enable_cli=1 -d opcache.jit=1255 -d opcache.file_cache=/tmp/opcache test.php php -d opcache.enable_cli=1 -d opcache.jit=disable -d opcache.file_cache=/tmp/opcache test.php ``` When jit is enabled, nothing is written to /tmp/opcache When jit is disabled, /tmp/opcache is populated Why? ### PHP Version 8.4 ### Operating System _No response_