[Pcre-svn] [277] code/trunk/src/pcre2_jit_compile.c: Warning…

トップ ページ
このメッセージを削除
著者: Subversion repository
日付:  
To: pcre-svn
題目: [Pcre-svn] [277] code/trunk/src/pcre2_jit_compile.c: Warning fixes.
Revision: 277
          http://www.exim.org/viewvc/pcre2?view=rev&revision=277
Author:   zherczeg
Date:     2015-06-01 07:55:17 +0100 (Mon, 01 Jun 2015)
Log Message:
-----------
Warning fixes.


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


Modified: code/trunk/src/pcre2_jit_compile.c
===================================================================
--- code/trunk/src/pcre2_jit_compile.c    2015-05-29 12:52:59 UTC (rev 276)
+++ code/trunk/src/pcre2_jit_compile.c    2015-06-01 06:55:17 UTC (rev 277)
@@ -7534,9 +7534,13 @@
   cc += GET(cc, 1);
 cc += 1 + LINK_SIZE;


-/* Temporarily encoding the needs_control_head in framesize. */
 if (opcode == OP_ONCE)
+  {
+  /* We temporarily encode the needs_control_head in the lowest bit.
+     Note: on the target architectures of SLJIT the ((x << 1) >> 1) returns
+     the same value for small signed numbers (including negative numbers). */
   BACKTRACK_AS(bracket_backtrack)->u.framesize = (BACKTRACK_AS(bracket_backtrack)->u.framesize << 1) | (needs_control_head ? 1 : 0);
+  }
 return cc + repeat_length;
 }


@@ -10371,7 +10375,7 @@
else
mode = (mode == PCRE2_JIT_PARTIAL_SOFT) ? 1 : 2;

-SLJIT_ASSERT(mode >= 0 && mode < JIT_NUMBER_OF_COMPILE_MODES);
+SLJIT_ASSERT(mode < JIT_NUMBER_OF_COMPILE_MODES);
functions->executable_funcs[mode] = executable_func;
functions->read_only_data_heads[mode] = common->read_only_data_head;
functions->executable_sizes[mode] = executable_size;