1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Fix missing HAVE_JIT guard

Closes GH-18993
This commit is contained in:
Ilija Tovilo
2025-07-01 11:41:24 +02:00
parent a179e39c38
commit c57ec92eb6

View File

@@ -1262,6 +1262,7 @@ void zend_update_parent_ce(zend_class_entry *ce)
}
}
#ifdef HAVE_JIT
static void zend_accel_persist_jit_op_array(zend_op_array *op_array, zend_class_entry *ce)
{
if (op_array->type == ZEND_USER_FUNCTION) {
@@ -1294,6 +1295,7 @@ static void zend_accel_persist_link_func_info(zend_op_array *op_array, zend_clas
}
}
}
#endif
static void zend_accel_persist_class_table(HashTable *class_table)
{