summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/powerpc/bmi2-check.h
blob: fa7d4c02a4529d1490fed03b57234ecb953422e5 (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
29
30
31
32
33
#include <stdio.h>
#include <stdlib.h>

static void bmi2_test (void);

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

int
main ()
{
  /* The BMI2 test for pext test requires the Bit Permute doubleword
     (bpermd) instruction added in PowerISA 2.06 along with the VSX
     facility.  So we can test for arch_2_06.  */
  if ( __builtin_cpu_supports ("arch_2_06") )
    {
      do_test ();
#ifdef DEBUG
      printf ("PASSED\n");
#endif
    }
#ifdef DEBUG
  else
    printf ("SKIPPED\n");
#endif

  return 0;
}