Adjust 'libgomp.c/max_vf-*.c'
[official-gcc.git] / gcc / testsuite / gcc.target / arm / mve / intrinsics / vqrshlq_s16.c
blob2a4a0feb5e6aa7320face23638db6964155b8372
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 ** vqrshl.s16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
16 ** ...
18 int16x8_t
19 foo (int16x8_t a, int16x8_t b)
21 return vqrshlq_s16 (a, b);
26 **foo1:
27 ** ...
28 ** vqrshl.s16 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
29 ** ...
31 int16x8_t
32 foo1 (int16x8_t a, int16x8_t b)
34 return vqrshlq (a, b);
37 #ifdef __cplusplus
39 #endif
41 /* { dg-final { scan-assembler-not "__ARM_undef" } } */