Fix ARM64 compilation warning in JIT.
This commit is contained in:
parent
000bbf2ea7
commit
d19789c251
|
@ -92,6 +92,8 @@ any Linux version will work.
|
||||||
|
|
||||||
18. Fixed a word boundary check bug in JIT when partial matching is enabled.
|
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
|
Version 10.35 09-May-2020
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
|
@ -87,6 +87,10 @@ static sljit_u8* SLJIT_FUNC FF_FUN(sljit_u8 *str_end, sljit_u8 *str_ptr, sljit_u
|
||||||
{
|
{
|
||||||
quad_word qw;
|
quad_word qw;
|
||||||
int_char ic;
|
int_char ic;
|
||||||
|
|
||||||
|
SLJIT_UNUSED_ARG(offs1);
|
||||||
|
SLJIT_UNUSED_ARG(offs2);
|
||||||
|
|
||||||
ic.x = chars;
|
ic.x = chars;
|
||||||
|
|
||||||
#if defined(FFCS)
|
#if defined(FFCS)
|
||||||
|
|
Loading…
Reference in New Issue