Skip to content

Commit c46a0ce

Browse files
committed
Merge branch 'PHP-8.2'
* PHP-8.2: [ci skip] NEWS [ci skip] NEWS ext/opcache/jit/zend_jit: fix inverted bailout value in zend_runtime_jit() (#10144)
2 parents 401974e + 9b57295 commit c46a0ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4259,7 +4259,7 @@ static int ZEND_FASTCALL zend_runtime_jit(void)
42594259
/* perform real JIT for this function */
42604260
zend_real_jit_func(op_array, NULL, NULL);
42614261
} zend_catch {
4262-
do_bailout = 0;
4262+
do_bailout = true;
42634263
} zend_end_try();
42644264

42654265
zend_jit_protect();

0 commit comments

Comments
 (0)