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

@ -95,9 +95,9 @@ typedef struct CPUTLBEntry {
uintptr_t addend;
/* padding to get a power of two size */
#if defined(_MSC_VER) && defined(_WIN64)
// dummy would be size 0 which isnt supported by msvc, so we remove it
// dummy would be size 0 which isnt supported by msvc, so we remove it
#else
uint8_t dummy[(1 << CPU_TLB_ENTRY_BITS) -
uint8_t dummy[(1 << CPU_TLB_ENTRY_BITS) -
(sizeof(target_ulong) * 3 +
(((-(int)sizeof(target_ulong)) * 3) & (sizeof(uintptr_t) - 1)) +
sizeof(uintptr_t))];