* gcc.target/i386/pr70021.c: Add -mtune=skylake.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / bmi2-pext32-1.c
blob230fea148039ef9745e4b47ca766849c174c78b3
1 /* { dg-do run { target bmi2 } } */
2 /* { dg-options "-mbmi2 -O2" } */
4 #include <x86intrin.h>
5 #include "bmi2-check.h"
7 __attribute__((noinline))
8 unsigned
9 calc_pext_u32 (unsigned a, unsigned mask)
11 unsigned res = 0;
12 int i, k = 0;
14 for (i = 0; i < 32; ++i)
15 if (mask & (1 << i)) {
16 res |= ((a & (1 << i)) >> i) << k;
17 ++k;
20 return res;
23 static void
24 bmi2_test ()
26 unsigned i;
27 unsigned src = 0xce7acc;
28 unsigned res, res_ref;
30 for (i = 0; i < 5; ++i) {
31 src = src * (i + 1);
33 res_ref = calc_pext_u32 (src, ~(i * 3));
34 res = _pext_u32 (src, ~(i * 3));
36 if (res != res_ref)
37 abort();