i386: Fix AVX512 intrin macro typo
[official-gcc.git] / gcc / testsuite / gcc.target / arm / mve / pr107987.c
blobe19a3f2ec51b7d83b54a28ee005ac9d8fbf38d77
1 /* { dg-options "-O2" } */
2 /* { dg-require-effective-target arm_v8_1m_mve_ok } */
3 /* { dg-add-options arm_v8_1m_mve } */
5 #include <arm_mve.h>
7 uint32x4_t foo (uint32x4_t a, uint32x4_t b)
9 mve_pred16_t p = vcmpneq_n_u32 (vandq_u32 (a, b), 0);
10 return vaddq_x_u32 (a, b, p);