blob: d6140e8969c94ee80f2ccb87124490a7da89221c [file] [log] [blame]
#include <stdio.h>
#include <stdlib.h>
#include "cpuid.h"
static void sse4a_test (void);
int
main ()
{
unsigned int eax, ebx, ecx, edx;
if (!__get_cpuid (0x80000001, &eax, &ebx, &ecx, &edx))
return 0;
/* Run SSE4a test only if host has SSE4a support. */
if (ecx & bit_SSE4a)
sse4a_test ();
return 0;
}