Adjust 'libgomp.c/max_vf-*.c'
[official-gcc.git] / gcc / testsuite / gcc.target / arm / mve / intrinsics / vst2q_s8.c
blob1408f5f04a5b75e1a9861db4c29e38755b93a35f
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 ** vst20.8 {q[0-9]+, q[0-9]+}, \[(?:ip|fp|r[0-9]+)\](?: @.*|)
16 ** ...
17 ** vst21.8 {q[0-9]+, q[0-9]+}, \[(?:ip|fp|r[0-9]+)\](?: @.*|)
18 ** ...
20 void
21 foo (int8_t *addr, int8x16x2_t value)
23 vst2q_s8 (addr, value);
28 **foo1:
29 ** ...
30 ** vst20.8 {q[0-9]+, q[0-9]+}, \[(?:ip|fp|r[0-9]+)\](?: @.*|)
31 ** ...
32 ** vst21.8 {q[0-9]+, q[0-9]+}, \[(?:ip|fp|r[0-9]+)\](?: @.*|)
33 ** ...
35 void
36 foo1 (int8_t *addr, int8x16x2_t value)
38 vst2q (addr, value);
41 #ifdef __cplusplus
43 #endif
45 /* { dg-final { scan-assembler-not "__ARM_undef" } } */