mesa: Rely on USE_X86_64_ASM.
authorJosé Fonseca <jfonseca@vmware.com>
Thu, 22 May 2014 19:43:55 +0000 (20:43 +0100)
committerJosé Fonseca <jfonseca@vmware.com>
Thu, 22 May 2014 21:39:46 +0000 (22:39 +0100)
This fixes MinGW x64 builds.  We don't use assembly on any of the
Windows builds, to avoid divergence between MSVC and MinGW when testing.

Reviewed-by: Matt Turner <mattst88@gmail.com>
src/mesa/main/cpuinfo.c
src/mesa/main/cpuinfo.h
src/mesa/x86/common_x86.c

index 73e295c75b7a541ea6133343bb0194a03dd9a755..0755d6b21ebaf58ffdda54907b22bed71f4357e8 100644 (file)
@@ -34,7 +34,7 @@
 void
 _mesa_get_cpu_features(void)
 {
-#if defined USE_X86_ASM || (defined __x86_64__ && !defined _MSC_VER)
+#if defined USE_X86_ASM || defined USE_X86_64_ASM
    _mesa_get_x86_features();
 #endif
 }
index fcd611e42e71199d1df32fcdc038b0ae87c23a68..57925e82bf251d39fafe861f4cf20f8b932791d8 100644 (file)
@@ -27,7 +27,7 @@
 #define CPUINFO_H
 
 
-#if defined USE_X86_ASM || (defined __x86_64__ && !defined _MSC_VER)
+#if defined USE_X86_ASM || defined USE_X86_64_ASM
 #include "x86/common_x86_asm.h"
 #endif
 
index a55c48ed1372393b7d75123120a87e0738a6dc40..9c1233925bf2201d389c133cbf716224bbeaf4fe 100644 (file)
@@ -47,7 +47,7 @@
 #include <sys/sysctl.h>
 #include <machine/cpu.h>
 #endif
-#if defined(__x86_64__) && !defined(_MSC_VER)
+#if defined(USE_X86_64_ASM)
 #include <cpuid.h>
 #endif
 
@@ -336,7 +336,7 @@ _mesa_get_x86_features(void)
    }
 #endif
 
-#elif defined(__x86_64__) && !defined(_MSC_VER)
+#elif defined(USE_X86_64_ASM)
    unsigned int uninitialized_var(eax), uninitialized_var(ebx),
                 uninitialized_var(ecx), uninitialized_var(edx);
 
@@ -347,7 +347,7 @@ _mesa_get_x86_features(void)
 
    if (ecx & bit_SSE4_1)
       _mesa_x86_cpu_features |= X86_FEATURE_SSE4_1;
-#endif /* USE_X86_ASM */
+#endif /* USE_X86_64_ASM */
 
    (void) detection_debug;
 }