Automated leading tab to spaces conversion.

This commit is contained in:
xorstream
2017-01-21 12:28:22 +11:00
parent df41c49e2d
commit 770c5616e2
69 changed files with 3839 additions and 3839 deletions

View File

@@ -152,12 +152,12 @@ extern bool use_vis3_instructions;
#include <windows.h>
static inline void flush_icache_range(uintptr_t start, uintptr_t stop)
{
FlushInstructionCache(GetCurrentProcess(), (const void*)start, stop-start);
FlushInstructionCache(GetCurrentProcess(), (const void*)start, stop-start);
}
#else
static inline void flush_icache_range(uintptr_t start, uintptr_t stop)
{
uintptr_t p;
uintptr_t p;
for (p = start & -8; p < ((stop + 7) & -8); p += 8) {
__asm__ __volatile__("flush\t%0" : : "r" (p));
}