OSDN Git Service

PR target/59839
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / i386 / sse2-check.h
1 #include <stdlib.h>
2 #include "cpuid.h"
3 #include "m128-check.h"
4 #include "sse-os-support.h"
5
6 static void sse2_test (void);
7
8 static void
9 __attribute__ ((noinline))
10 do_test (void)
11 {
12   sse2_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 SSE2 test only if host has SSE2 support.  */
24   if ((edx & bit_SSE2) && sse_os_support ())
25     do_test ();
26
27   return 0;
28 }