correct preprocessor fall-through for stats.h (linux)

This commit is contained in:
Marisa Kirisame 2022-03-08 23:50:35 +01:00 committed by Rachael Alexanderson
parent 0937068dad
commit 7ba5a74f2e

View file

@ -78,7 +78,7 @@ inline uint64_t rdtsc()
#elif defined __aarch64__
// TODO: Implement and test on ARM64
return 0;
#else // i386
#elif defined __i386__
if (CPU.bRDTSC)
{
uint64_t tsc;
@ -86,6 +86,8 @@ inline uint64_t rdtsc()
return tsc;
}
return 0;
#else
return 0;
#endif // __amd64__
}
#endif