summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/xop-check.h
blob: 7e8e665c79f11be6be89be70ca5fba531c1a6a19 (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 "cpuid.h"
#include "m256-check.h"

static void xop_test (void);

static void
__attribute__ ((noinline))
do_test (void)
{
  xop_test ();
}

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)
    do_test ();

  exit (0);
}