Adjust 'libgomp.c/max_vf-*.c'
[official-gcc.git] / gcc / testsuite / gcc.target / arm / mve / intrinsics / vqrdmlsdhxq_m_s32.c
blob7b5ee71194ce4bce2680b09ed5f2aad067bdb496
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 ** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
16 ** ...
17 ** vpst(?: @.*|)
18 ** ...
19 ** vqrdmlsdhxt.s32 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
20 ** ...
22 int32x4_t
23 foo (int32x4_t inactive, int32x4_t a, int32x4_t b, mve_pred16_t p)
25 return vqrdmlsdhxq_m_s32 (inactive, a, b, p);
30 **foo1:
31 ** ...
32 ** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
33 ** ...
34 ** vpst(?: @.*|)
35 ** ...
36 ** vqrdmlsdhxt.s32 q[0-9]+, q[0-9]+, q[0-9]+(?: @.*|)
37 ** ...
39 int32x4_t
40 foo1 (int32x4_t inactive, int32x4_t a, int32x4_t b, mve_pred16_t p)
42 return vqrdmlsdhxq_m (inactive, a, b, p);
45 #ifdef __cplusplus
47 #endif
49 /* { dg-final { scan-assembler-not "__ARM_undef" } } */