i386: Fix scalar VCOMSBF16 which only compares low word
[official-gcc.git] / gcc / testsuite / gcc.target / arm / mve / intrinsics / vrev64q_s32.c
blob81fc7d1bdd0d6a98f02076fd16449215e966d1a8
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 ** vrev64.32 q[0-9]+, q[0-9]+(?: @.*|)
16 ** ...
18 int32x4_t
19 foo (int32x4_t a)
21 return vrev64q_s32 (a);
26 **foo1:
27 ** ...
28 ** vrev64.32 q[0-9]+, q[0-9]+(?: @.*|)
29 ** ...
31 int32x4_t
32 foo1 (int32x4_t a)
34 return vrev64q (a);
37 #ifdef __cplusplus
39 #endif
41 /* { dg-final { scan-assembler-not "__ARM_undef" } } */