OSDN Git Service

2011-08-19 Andrew Stubbs <ams@codesourcery.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / i386 / sse-check.h
1 #include <stdlib.h>
2 #include "m128-check.h"
3 #include "cpuid.h"
4 #include "sse-os-support.h"
5
6 static void sse_test (void);
7
8 static void
9 __attribute__ ((noinline))
10 do_test (void)
11 {
12   sse_test ();
13 }
14
15 int
16 main ()
17 {
18   unsigned int eax, ebx, ecx, edx;
19  
20   if (!__get_cpuid (1, &eax, &ebx, &ecx, &edx))
21     return 0;
22
23   /* Run SSE test only if host has SSE support.  */
24   if ((edx & bit_SSE) && sse_os_support ())
25     do_test ();
26
27   return 0;
28 }