mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-02-07 23:24:09 +00:00
Fix compiler warning.
This commit is contained in:
parent
46955be1e2
commit
7bad42a3ba
@ -856,7 +856,9 @@ static uint32_t ir_khash(IRIns *ir)
|
|||||||
static void asm_cache_flush(MCode *start, MCode *end)
|
static void asm_cache_flush(MCode *start, MCode *end)
|
||||||
{
|
{
|
||||||
VG_INVALIDATE(start, (char *)end-(char *)start);
|
VG_INVALIDATE(start, (char *)end-(char *)start);
|
||||||
#if !LJ_TARGET_X86ORX64
|
#if LJ_TARGET_X86ORX64
|
||||||
|
UNUSED(start); UNUSED(end);
|
||||||
|
#else
|
||||||
#if defined(__GNUC__)
|
#if defined(__GNUC__)
|
||||||
__clear_cache(start, end);
|
__clear_cache(start, end);
|
||||||
#else
|
#else
|
||||||
|
Loading…
Reference in New Issue
Block a user