1--TEST-- 2JIT ICALL: 001 3--INI-- 4opcache.enable=1 5opcache.enable_cli=1 6opcache.file_update_protection=0 7;opcache.jit_debug=257 8--EXTENSIONS-- 9opcache 10--FILE-- 11<?php 12var_dump(true, 0, 42, -42, 0.0, 2.0,"hello", array()); 13?> 14--EXPECT-- 15bool(true) 16int(0) 17int(42) 18int(-42) 19float(0) 20float(2) 21string(5) "hello" 22array(0) { 23} 24