Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / sse4_2-check.h
blob2a397e886834a03f8b65e7419f58c68d22cc504d
1 #include <stdio.h>
2 #include <stdlib.h>
4 #include "cpuid.h"
6 static void sse4_2_test (void);
8 int
9 main ()
11 unsigned int eax, ebx, ecx, edx;
13 if (!__get_cpuid (1, &eax, &ebx, &ecx, &edx))
14 return 0;
16 /* Run SSE4.2 test only if host has SSE4.2 support. */
17 if (ecx & bit_SSE4_2)
18 sse4_2_test ();
20 return 0;