aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/fma4-check.h
blob: 33cd9628c0411edfedd6cb846460dc7b12e01b4e (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
#include <stdlib.h>

#include "cpuid.h"

static void fma4_test (void);

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

int
main ()
{
  unsigned int eax, ebx, ecx, edx;
 
  if (!__get_cpuid (0x80000001, &eax, &ebx, &ecx, &edx))
    return 0;

  /* Run FMA4 test only if host has FMA4 support.  */
  if (ecx & bit_FMA4)
    do_test ();

  return 0;
}