diff options
Diffstat (limited to '')
-rw-r--r-- | src/lj_mcode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_mcode.c b/src/lj_mcode.c index b2d12118..a5153b25 100644 --- a/src/lj_mcode.c +++ b/src/lj_mcode.c | |||
@@ -45,7 +45,7 @@ void lj_mcode_sync(void *start, void *end) | |||
45 | sys_icache_invalidate(start, (char *)end-(char *)start); | 45 | sys_icache_invalidate(start, (char *)end-(char *)start); |
46 | #elif LJ_TARGET_PPC | 46 | #elif LJ_TARGET_PPC |
47 | lj_vm_cachesync(start, end); | 47 | lj_vm_cachesync(start, end); |
48 | #elif defined(__GNUC__) | 48 | #elif defined(__GNUC__) || defined(__clang__) |
49 | __clear_cache(start, end); | 49 | __clear_cache(start, end); |
50 | #else | 50 | #else |
51 | #error "Missing builtin to flush instruction cache" | 51 | #error "Missing builtin to flush instruction cache" |