Skip to content

Commit 34cd6cb

Browse files
committed
Merge branch 'PHP-8.0' into PHP-8.1
* PHP-8.0: Revert "Fix #81424: PCRE2 10.35 JIT performance regression"
2 parents 8360e9d + 9523542 commit 34cd6cb

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ PHP NEWS
1010
Doleček)
1111
. Fixed bug #81380 (Observer may not be initialized properly). (krakjoe)
1212

13+
- PCRE:
14+
. Unfixed bug #81424 (PCRE2 10.35 JIT performance regression). (cmb)
15+
1316
- Standard:
1417
. Fixed bug #81491 (Incorrectly using libsodium for argon2 hashing).
1518
(Dan Pock)

ext/pcre/pcre2lib/pcre2_jit_compile.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11228,7 +11228,7 @@ early_fail_type = (early_fail_ptr & 0x7);
1122811228
early_fail_ptr >>= 3;
1122911229

1123011230
/* During recursion, these optimizations are disabled. */
11231-
if (common->early_fail_start_ptr == 0 && common->fast_forward_bc_ptr == NULL)
11231+
if (common->early_fail_start_ptr == 0)
1123211232
{
1123311233
early_fail_ptr = 0;
1123411234
early_fail_type = type_skip;

0 commit comments

Comments
 (0)