We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9ffa3f9 + 12e79dd commit 311b1deCopy full SHA for 311b1de
NEWS
@@ -13,6 +13,9 @@ PHP NEWS
13
. Fixed bug #81409 (Incorrect JIT code for ADD with a reference to array).
14
(Dmitry)
15
16
+- PCRE:
17
+ . Fixed bug #81424 (PCRE2 10.35 JIT performance regression). (cmb)
18
+
19
- Zip:
20
. Fixed bug #80833 (ZipArchive::getStream doesn't use setPassword). (Remi)
21
ext/pcre/pcre2lib/pcre2_jit_compile.c
@@ -11228,7 +11228,7 @@ early_fail_type = (early_fail_ptr & 0x7);
11228
early_fail_ptr >>= 3;
11229
11230
/* During recursion, these optimizations are disabled. */
11231
-if (common->early_fail_start_ptr == 0)
+if (common->early_fail_start_ptr == 0 && common->fast_forward_bc_ptr == NULL)
11232
{
11233
early_fail_ptr = 0;
11234
early_fail_type = type_skip;
0 commit comments