Adjust 'libgomp.c/max_vf-*.c'
[official-gcc.git] / gcc / testsuite / gcc.target / arm / mve / intrinsics / urshrl.c
blobff6a69d300fa64782777f9952d81edf45e115664
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 ** urshrl (?:ip|fp|r[0-9]+), (?:ip|fp|r[0-9]+), #1(?: @.*|)
16 ** ...
18 uint64_t
19 foo (uint64_t value)
21 return urshrl (value, 1);
25 **foo1:
26 ** ...
27 ** urshrl (?:ip|fp|r[0-9]+), (?:ip|fp|r[0-9]+), #1(?: @.*|)
28 ** ...
30 uint64_t
31 foo1 ()
33 return urshrl (1, 1);
36 #ifdef __cplusplus
38 #endif
40 /* { dg-final { scan-assembler-not "__ARM_undef" } } */