blob: 11b71bc3e97513be00181c074c06d977247f35c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#include <stdlib.h>
#include "m128-check.h"
#include "cpuid.h"
#include "sse-os-support.h"
static void sse_test (void);
static void
__attribute__ ((noinline))
do_test (void)
{
sse_test ();
}
int
main ()
{
unsigned int eax, ebx, ecx, edx;
if (!__get_cpuid (1, &eax, &ebx, &ecx, &edx))
return 0;
/* Run SSE test only if host has SSE support. */
if ((edx & bit_SSE) && sse_os_support ())
do_test ();
return 0;
}
|