blob: 2dede33d8513cc9a965daebbec50e6def86e4b0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include <stdlib.h>
#include "cpuid.h"
static void xop_test (void);
int
main ()
{
unsigned int eax, ebx, ecx, edx;
if (!__get_cpuid (0x80000001, &eax, &ebx, &ecx, &edx))
return 0;
/* Run XOP test only if host has XOP support. */
if (ecx & bit_XOP)
xop_test ();
exit (0);
}
|