[AArch64/arm] PR testsuite/85326 Avoid C++ tests when C++ compiler not present
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / bmi2-shrx64-1.c
blob81d232e765fb3f41d05e9095e395076e102fba03
1 /* { dg-do run { target { bmi2 && { ! ia32 } } } } */
2 /* { dg-options "-mbmi2 -O2 -dp" } */
4 #include "bmi2-check.h"
6 __attribute__((noinline))
7 unsigned long long
8 calc_shrx_u64 (unsigned long long a, int l)
10 unsigned long long volatile res = a;
11 int i;
12 for (i = 0; i < l; ++i)
13 res >>= 1;
15 return res;
18 static void
19 bmi2_test ()
21 unsigned i;
22 unsigned long long src = 0xce7ace0ce7ace0;
23 unsigned long long res, res_ref;
25 for (i = 0; i < 5; ++i) {
26 src = src * (i + 1);
28 res_ref = calc_shrx_u64 (src, i + 1);
29 res = src >> (i + 1);
31 if (res != res_ref)
32 abort();