Adjust 'libgomp.c/max_vf-*.c'
[official-gcc.git] / gcc / testsuite / gcc.target / arm / mve / intrinsics / vcmpleq_m_n_s8.c
blob10709a8520c987584afd04bb9e5c81a83604391d
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 ** vcmpt.s8 le, q[0-9]+, (?:ip|fp|r[0-9]+)(?: @.*|)
20 ** ...
21 ** vmrs (?:ip|fp|r[0-9]+), p0(?: @.*|)
22 ** ...
24 mve_pred16_t
25 foo (int8x16_t a, int8_t b, mve_pred16_t p)
27 return vcmpleq_m_n_s8 (a, b, p);
32 **foo1:
33 ** ...
34 ** vmsr p0, (?:ip|fp|r[0-9]+)(?: @.*|)
35 ** ...
36 ** vpst(?: @.*|)
37 ** ...
38 ** vcmpt.s8 le, q[0-9]+, (?:ip|fp|r[0-9]+)(?: @.*|)
39 ** ...
40 ** vmrs (?:ip|fp|r[0-9]+), p0(?: @.*|)
41 ** ...
43 mve_pred16_t
44 foo1 (int8x16_t a, int8_t b, mve_pred16_t p)
46 return vcmpleq_m (a, b, p);
49 #ifdef __cplusplus
51 #endif
53 /* { dg-final { scan-assembler-not "__ARM_undef" } } */