Skip to content

Commit 9523542

Browse files
committed
Merge branch 'PHP-7.4' into PHP-8.0
* PHP-7.4: Revert "Fix #81424: PCRE2 10.35 JIT performance regression"
2 parents bbd3f71 + a19f655 commit 9523542

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

NEWS

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ PHP NEWS
2929
. Fixed bug #81472 (Cannot support large linux major/minor device number when
3030
read /proc/self/maps). (Lin Yang)
3131

32-
- PCRE:
33-
. Fixed bug #81424 (PCRE2 10.35 JIT performance regression). (cmb)
34-
3532
- Reflection:
3633
. ReflectionAttribute is no longer final. (sasezaki)
3734

ext/pcre/pcre2lib/pcre2_jit_compile.c

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

1115411154
/* During recursion, these optimizations are disabled. */
11155-
if (common->early_fail_start_ptr == 0 && common->fast_forward_bc_ptr == NULL)
11155+
if (common->early_fail_start_ptr == 0)
1115611156
{
1115711157
early_fail_ptr = 0;
1115811158
early_fail_type = type_skip;

0 commit comments

Comments
 (0)