[Pcre-svn] [1302] code/trunk: Restore single character repet…

Kezdőlap
Üzenet törlése
Szerző: Subversion repository
Dátum:  
Címzett: pcre-svn
Tárgy: [Pcre-svn] [1302] code/trunk: Restore single character repetition optimization in JIT.
Revision: 1302
          http://www.exim.org/viewvc/pcre2?view=rev&revision=1302
Author:   zherczeg
Date:     2021-02-19 09:20:37 +0000 (Fri, 19 Feb 2021)
Log Message:
-----------
Restore single character repetition optimization in JIT.


Modified Paths:
--------------
    code/trunk/ChangeLog
    code/trunk/src/pcre2_jit_compile.c


Modified: code/trunk/ChangeLog
===================================================================
--- code/trunk/ChangeLog    2021-02-18 09:46:08 UTC (rev 1301)
+++ code/trunk/ChangeLog    2021-02-19 09:20:37 UTC (rev 1302)
@@ -1,6 +1,13 @@
 Change Log for PCRE2
 --------------------


+Version 10.38
+-------------
+
+1. Restore single character repetition optimization in JIT.
+Currently fewer character repetitions are optimized than in 10.34.
+
+
Version 10.37-RC1 04-January-2021
---------------------------------


Modified: code/trunk/src/pcre2_jit_compile.c
===================================================================
--- code/trunk/src/pcre2_jit_compile.c    2021-02-18 09:46:08 UTC (rev 1301)
+++ code/trunk/src/pcre2_jit_compile.c    2021-02-19 09:20:37 UTC (rev 1302)
@@ -1226,7 +1226,7 @@
 return TRUE;
 }


-#define EARLY_FAIL_ENHANCE_MAX (1 + 1)
+#define EARLY_FAIL_ENHANCE_MAX (1 + 3)

/*
start: