Skip to content

Commit 927aeca

Browse files
committed
Merge branch 'PHP-8.4'
* PHP-8.4: Fix missing HAVE_JIT guard
2 parents 49d94cc + c57ec92 commit 927aeca

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

ext/opcache/zend_persist.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1283,6 +1283,7 @@ void zend_update_parent_ce(zend_class_entry *ce)
12831283
}
12841284
}
12851285

1286+
#ifdef HAVE_JIT
12861287
static void zend_accel_persist_jit_op_array(zend_op_array *op_array, zend_class_entry *ce)
12871288
{
12881289
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
13151316
}
13161317
}
13171318
}
1319+
#endif
13181320

13191321
static void zend_accel_persist_class_table(HashTable *class_table)
13201322
{

0 commit comments

Comments
 (0)