@@ -335,8 +335,8 @@ ZEND_INI_BEGIN()
335
335
STD_PHP_INI_ENTRY ("opcache.jit_max_recursive_calls" , "2" , PHP_INI_ALL , OnUpdateUnrollC , max_recursive_calls , zend_jit_globals , jit_globals )
336
336
STD_PHP_INI_ENTRY ("opcache.jit_max_recursive_returns" , "2" , PHP_INI_ALL , OnUpdateUnrollR , max_recursive_returns , zend_jit_globals , jit_globals )
337
337
STD_PHP_INI_ENTRY ("opcache.jit_max_polymorphic_calls" , "2" , PHP_INI_ALL , OnUpdateLong , max_polymorphic_calls , zend_jit_globals , jit_globals )
338
+ STD_PHP_INI_ENTRY ("opcache.jit_max_trace_length" , "1024" , PHP_INI_ALL , OnUpdateMaxTraceLength , max_trace_length , zend_jit_globals , jit_globals )
338
339
STD_PHP_INI_ENTRY ("opcache.jit_trace_inline_func_limit" , "16" , PHP_INI_ALL , OnUpdateLong , jit_trace_inline_func_limit , zend_jit_globals , jit_globals )
339
- STD_PHP_INI_ENTRY ("opcache.jit_max_trace_length" , "1024" , PHP_INI_ALL , OnUpdateMaxTraceLength , max_trace_length , zend_jit_globals , jit_globals )
340
340
#endif
341
341
ZEND_INI_END ()
342
342
@@ -851,7 +851,7 @@ ZEND_FUNCTION(opcache_get_configuration)
851
851
add_assoc_long (& directives , "opcache.jit_max_root_traces" , JIT_G (max_root_traces ));
852
852
add_assoc_long (& directives , "opcache.jit_max_side_traces" , JIT_G (max_side_traces ));
853
853
add_assoc_long (& directives , "opcache.jit_prof_threshold" , JIT_G (prof_threshold ));
854
- add_assoc_long (& directives , "opcache.jit_max_trace_length" , JIT_G (max_trace_length ));
854
+ add_assoc_long (& directives , "opcache.jit_max_trace_length" , JIT_G (max_trace_length ));
855
855
add_assoc_long (& directives , "opcache.jit_trace_inline_func_limit" , JIT_G (jit_trace_inline_func_limit ));
856
856
#endif
857
857
0 commit comments