summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--src/pcre2_jit_neon_inc.h4
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 0b39875..e3b0a4e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -92,6 +92,8 @@ any Linux version will work.
18. Fixed a word boundary check bug in JIT when partial matching is enabled.
+19. Fix ARM64 compilation warning in JIT. Patch by Carlo.
+
Version 10.35 09-May-2020
---------------------------
diff --git a/src/pcre2_jit_neon_inc.h b/src/pcre2_jit_neon_inc.h
index 66373b6..150da29 100644
--- a/src/pcre2_jit_neon_inc.h
+++ b/src/pcre2_jit_neon_inc.h
@@ -87,6 +87,10 @@ static sljit_u8* SLJIT_FUNC FF_FUN(sljit_u8 *str_end, sljit_u8 *str_ptr, sljit_u
{
quad_word qw;
int_char ic;
+
+SLJIT_UNUSED_ARG(offs1);
+SLJIT_UNUSED_ARG(offs2);
+
ic.x = chars;
#if defined(FFCS)