[Pcre-svn] [1721] code/trunk/pcre_jit_compile.c: Fix a defin…

Inizio della pagina
Delete this message
Autore: Subversion repository
Data:  
To: pcre-svn
Oggetto: [Pcre-svn] [1721] code/trunk/pcre_jit_compile.c: Fix a define typo (patch migration).
Revision: 1721
          http://vcs.pcre.org/viewvc?view=rev&revision=1721
Author:   zherczeg
Date:     2018-01-08 11:44:57 +0000 (Mon, 08 Jan 2018)
Log Message:
-----------
Fix a define typo (patch migration).


Modified Paths:
--------------
    code/trunk/pcre_jit_compile.c


Modified: code/trunk/pcre_jit_compile.c
===================================================================
--- code/trunk/pcre_jit_compile.c    2018-01-05 09:51:02 UTC (rev 1720)
+++ code/trunk/pcre_jit_compile.c    2018-01-08 11:44:57 UTC (rev 1721)
@@ -5375,16 +5375,16 @@
   OP2(SLJIT_ADD, TMP1, 0, TMP1, 0, SLJIT_IMM, IN_UCHARS(1));
   }


-#if PCRE2_CODE_UNIT_WIDTH != 8
+#ifndef COMPILE_PCRE8
jump = CMP(SLJIT_GREATER, char1_reg, 0, SLJIT_IMM, 255);
#endif
OP1(SLJIT_MOV_U8, char1_reg, 0, SLJIT_MEM2(lcc_table, char1_reg), 0);
-#if PCRE2_CODE_UNIT_WIDTH != 8
+#ifndef COMPILE_PCRE8
JUMPHERE(jump);
jump = CMP(SLJIT_GREATER, char2_reg, 0, SLJIT_IMM, 255);
#endif
OP1(SLJIT_MOV_U8, char2_reg, 0, SLJIT_MEM2(lcc_table, char2_reg), 0);
-#if PCRE2_CODE_UNIT_WIDTH != 8
+#ifndef COMPILE_PCRE8
JUMPHERE(jump);
#endif