activate __get_cpuid on all non X64 platform, fixes #1193

This commit is contained in:
Dennis Luxen 2015-04-07 14:45:21 +02:00
parent a4f31001e8
commit 592211cecd

View File

@ -116,7 +116,7 @@ class IteratorbasedCRC32
return ecx;
}
#if defined(__MINGW64__) || defined(_MSC_VER)
#if defined(__MINGW64__) || defined(_MSC_VER) || !defined(__x86_64__)
inline void
__get_cpuid(int param, unsigned *eax, unsigned *ebx, unsigned *ecx, unsigned *edx) const
{