OSDN Git Service

* gcc/config/i386/cpuid.h: New file.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / i386 / sse3-check.h
index 120c3e6..92930d1 100644 (file)
@@ -1,19 +1,21 @@
+#include <stdio.h>
 #include <stdlib.h>
 
-#include "../../gcc.dg/i386-cpuid.h"
+#include "cpuid.h"
 
 static void sse3_test (void);
 
 int
 main ()
 {
-  unsigned long cpu_facilities;
+  unsigned int eax, ebx, ecx, edx;
+  if (!__get_cpuid (1, &eax, &ebx, &ecx, &edx))
+    return 0;
  
-  cpu_facilities = i386_cpuid_ecx ();
-
   /* Run SSE3 test only if host has SSE3 support.  */
-  if ((cpu_facilities & bit_SSE3))
+  if (ecx & bit_SSE3)
     sse3_test ();
 
-  exit (0);
+  return 0;
 }