We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6fbdf69 + a247138 commit 12e79ddCopy full SHA for 12e79dd
NEWS
@@ -6,6 +6,9 @@ PHP NEWS
6
. Fixed bug #81433 (DOMElement::setIdAttribute() called twice may remove ID).
7
(Viktor Volkov)
8
9
+- PCRE:
10
+ . Fixed bug #81424 (PCRE2 10.35 JIT performance regression). (cmb)
11
+
12
23 Sep 2021, PHP 8.0.11
13
14
- Core:
ext/pcre/pcre2lib/pcre2_jit_compile.c
@@ -11152,7 +11152,7 @@ early_fail_type = (early_fail_ptr & 0x7);
11152
early_fail_ptr >>= 3;
11153
11154
/* During recursion, these optimizations are disabled. */
11155
-if (common->early_fail_start_ptr == 0)
+if (common->early_fail_start_ptr == 0 && common->fast_forward_bc_ptr == NULL)
11156
{
11157
early_fail_ptr = 0;
11158
early_fail_type = type_skip;
0 commit comments