summaryrefslogtreecommitdiff
path: root/src/sp_execute.c
diff options
context:
space:
mode:
authorjvoisin2023-06-25 14:25:46 +0200
committerjvoisin2023-06-25 14:25:46 +0200
commit709d850429d0d62b148bc235745c830c2f7a55be (patch)
tree8322021eb476b9c081c6821cfa45611ca8cffb08 /src/sp_execute.c
parenta3db93c2f18b147c48c6788e91f2eaecca935c61 (diff)
Remove ZEND_HOT
Diffstat (limited to 'src/sp_execute.c')
-rw-r--r--src/sp_execute.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp_execute.c b/src/sp_execute.c
index 6e80b6d..f105b7f 100644
--- a/src/sp_execute.c
+++ b/src/sp_execute.c
@@ -89,7 +89,7 @@ inline static void is_builtin_matching(
89 should_disable_ht(EG(current_execute_data), function_name, param_value, param_name, SPCFG(disabled_functions_reg).disabled_functions, ht); 89 should_disable_ht(EG(current_execute_data), function_name, param_value, param_name, SPCFG(disabled_functions_reg).disabled_functions, ht);
90} 90}
91 91
92static void ZEND_HOT is_in_eval_and_whitelisted(zend_execute_data const* const execute_data) { 92static void is_in_eval_and_whitelisted(zend_execute_data const* const execute_data) {
93 sp_config_eval const* const config_eval = &(SPCFG(eval)); 93 sp_config_eval const* const config_eval = &(SPCFG(eval));
94 94
95 if (EXPECTED(0 == SPG(in_eval))) { 95 if (EXPECTED(0 == SPG(in_eval))) {