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

Merge branch 'PHP-8.4'

* PHP-8.4:
  Fix missing HAVE_JIT guard
This commit is contained in:
Ilija Tovilo
2025-07-01 17:50:48 +02:00

View File

@@ -1283,6 +1283,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) {
@@ -1315,6 +1316,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)
{