diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lj_asm.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lj_asm.c b/src/lj_asm.c index 05c43fed..f88b1a5b 100644 --- a/src/lj_asm.c +++ b/src/lj_asm.c | |||
| @@ -856,7 +856,9 @@ static uint32_t ir_khash(IRIns *ir) | |||
| 856 | static void asm_cache_flush(MCode *start, MCode *end) | 856 | static void asm_cache_flush(MCode *start, MCode *end) |
| 857 | { | 857 | { |
| 858 | VG_INVALIDATE(start, (char *)end-(char *)start); | 858 | VG_INVALIDATE(start, (char *)end-(char *)start); |
| 859 | #if !LJ_TARGET_X86ORX64 | 859 | #if LJ_TARGET_X86ORX64 |
| 860 | UNUSED(start); UNUSED(end); | ||
| 861 | #else | ||
| 860 | #if defined(__GNUC__) | 862 | #if defined(__GNUC__) |
| 861 | __clear_cache(start, end); | 863 | __clear_cache(start, end); |
| 862 | #else | 864 | #else |
