Adjust 'libgomp.c/max_vf-*.c'
[official-gcc.git] / gcc / testsuite / gcc.target / arm / mve / intrinsics / vbicq_n_u32.c
blobf3fe58fdf375d42eea2e3e182d61666ce8bfe57f
1 /* { dg-require-effective-target arm_v8_1m_mve_ok } */
2 /* { dg-add-options arm_v8_1m_mve } */
3 /* { dg-additional-options "-O2" } */
4 /* { dg-final { check-function-bodies "**" "" } } */
6 #include "arm_mve.h"
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
13 **foo:
14 ** ...
15 ** vbic.i32 q[0-9]+, #[0-9]+(?: @.*|)
16 ** ...
18 uint32x4_t
19 foo (uint32x4_t a)
21 return vbicq_n_u32 (a, 1);
26 **foo1:
27 ** ...
28 ** vbic.i32 q[0-9]+, #[0-9]+(?: @.*|)
29 ** ...
31 uint32x4_t
32 foo1 (uint32x4_t a)
34 return vbicq (a, 1);
37 #ifdef __cplusplus
39 #endif
41 /* { dg-final { scan-assembler-not "__ARM_undef" } } */