Adjust 'libgomp.c/max_vf-*.c'
[official-gcc.git] / gcc / testsuite / gcc.target / arm / mve / intrinsics / vcmpneq_n_f32.c
blobc3ffbd1335f5b5915669c674726b3980175628c8
1 /* { dg-require-effective-target arm_v8_1m_mve_fp_ok } */
2 /* { dg-add-options arm_v8_1m_mve_fp } */
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 ** vcmp.f32 ne, q[0-9]+, (?:ip|fp|r[0-9]+)(?: @.*|)
16 ** ...
17 ** vmrs (?:ip|fp|r[0-9]+), p0(?: @.*|)
18 ** ...
20 mve_pred16_t
21 foo (float32x4_t a, float32_t b)
23 return vcmpneq_n_f32 (a, b);
28 **foo1:
29 ** ...
30 ** vcmp.f32 ne, q[0-9]+, (?:ip|fp|r[0-9]+)(?: @.*|)
31 ** ...
32 ** vmrs (?:ip|fp|r[0-9]+), p0(?: @.*|)
33 ** ...
35 mve_pred16_t
36 foo1 (float32x4_t a, float32_t b)
38 return vcmpneq (a, b);
42 **foo2:
43 ** ...
44 ** vcmp.f32 ne, q[0-9]+, (?:ip|fp|r[0-9]+)(?: @.*|)
45 ** ...
46 ** vmrs (?:ip|fp|r[0-9]+), p0(?: @.*|)
47 ** ...
49 mve_pred16_t
50 foo2 (float32x4_t a)
52 return vcmpneq (a, 1.1);
55 #ifdef __cplusplus
57 #endif
59 /* { dg-final { scan-assembler-not "__ARM_undef" } } */