Removed MSVC cpuid func when using clang.

This commit is contained in:
Hank Anderson 2015-02-25 14:44:49 -06:00
parent 3649cfbd7b
commit e19bf3a28b
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@
#endif
*/
#ifdef _MSC_VER
#if defined(_MSC_VER) && !defined(__clang__)
void cpuid(int op, int *eax, int *ebx, int *ecx, int *edx)
{