1 // RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve2 -fallow-half-arguments-and-returns -S -O1 -Werror -Wall -emit-llvm -o - %s | FileCheck %s
2 // RUN: %clang_cc1 -DSVE_OVERLOADED_FORMS -triple aarch64-none-linux-gnu -target-feature +sve2 -fallow-half-arguments-and-returns -S -O1 -Werror -Wall -emit-llvm -o - %s | FileCheck %s
3 // RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve -fallow-half-arguments-and-returns -fsyntax-only -verify -verify-ignore-unexpected=error %s
4 // RUN: %clang_cc1 -DSVE_OVERLOADED_FORMS -triple aarch64-none-linux-gnu -target-feature +sve -fallow-half-arguments-and-returns -fsyntax-only -verify=overload -verify-ignore-unexpected=error %s
5
6 #include <arm_sve.h>
7
8 #ifdef SVE_OVERLOADED_FORMS
9 // A simple used,unused... macro, long enough to represent any SVE builtin.
10 #define SVE_ACLE_FUNC(A1,A2_UNUSED,A3,A4_UNUSED) A1##A3
11 #else
12 #define SVE_ACLE_FUNC(A1,A2,A3,A4) A1##A2##A3##A4
13 #endif
14
test_svmlslb_s16(svint16_t op1,svint8_t op2,svint8_t op3)15 svint16_t test_svmlslb_s16(svint16_t op1, svint8_t op2, svint8_t op3)
16 {
17 // CHECK-LABEL: test_svmlslb_s16
18 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.smlslb.nxv8i16(<vscale x 8 x i16> %op1, <vscale x 16 x i8> %op2, <vscale x 16 x i8> %op3)
19 // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
20 // overload-warning@+2 {{implicit declaration of function 'svmlslb'}}
21 // expected-warning@+1 {{implicit declaration of function 'svmlslb_s16'}}
22 return SVE_ACLE_FUNC(svmlslb,_s16,,)(op1, op2, op3);
23 }
24
test_svmlslb_s32(svint32_t op1,svint16_t op2,svint16_t op3)25 svint32_t test_svmlslb_s32(svint32_t op1, svint16_t op2, svint16_t op3)
26 {
27 // CHECK-LABEL: test_svmlslb_s32
28 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.smlslb.nxv4i32(<vscale x 4 x i32> %op1, <vscale x 8 x i16> %op2, <vscale x 8 x i16> %op3)
29 // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
30 // overload-warning@+2 {{implicit declaration of function 'svmlslb'}}
31 // expected-warning@+1 {{implicit declaration of function 'svmlslb_s32'}}
32 return SVE_ACLE_FUNC(svmlslb,_s32,,)(op1, op2, op3);
33 }
34
test_svmlslb_s64(svint64_t op1,svint32_t op2,svint32_t op3)35 svint64_t test_svmlslb_s64(svint64_t op1, svint32_t op2, svint32_t op3)
36 {
37 // CHECK-LABEL: test_svmlslb_s64
38 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.smlslb.nxv2i64(<vscale x 2 x i64> %op1, <vscale x 4 x i32> %op2, <vscale x 4 x i32> %op3)
39 // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
40 // overload-warning@+2 {{implicit declaration of function 'svmlslb'}}
41 // expected-warning@+1 {{implicit declaration of function 'svmlslb_s64'}}
42 return SVE_ACLE_FUNC(svmlslb,_s64,,)(op1, op2, op3);
43 }
44
test_svmlslb_u16(svuint16_t op1,svuint8_t op2,svuint8_t op3)45 svuint16_t test_svmlslb_u16(svuint16_t op1, svuint8_t op2, svuint8_t op3)
46 {
47 // CHECK-LABEL: test_svmlslb_u16
48 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.umlslb.nxv8i16(<vscale x 8 x i16> %op1, <vscale x 16 x i8> %op2, <vscale x 16 x i8> %op3)
49 // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
50 // overload-warning@+2 {{implicit declaration of function 'svmlslb'}}
51 // expected-warning@+1 {{implicit declaration of function 'svmlslb_u16'}}
52 return SVE_ACLE_FUNC(svmlslb,_u16,,)(op1, op2, op3);
53 }
54
test_svmlslb_u32(svuint32_t op1,svuint16_t op2,svuint16_t op3)55 svuint32_t test_svmlslb_u32(svuint32_t op1, svuint16_t op2, svuint16_t op3)
56 {
57 // CHECK-LABEL: test_svmlslb_u32
58 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.umlslb.nxv4i32(<vscale x 4 x i32> %op1, <vscale x 8 x i16> %op2, <vscale x 8 x i16> %op3)
59 // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
60 // overload-warning@+2 {{implicit declaration of function 'svmlslb'}}
61 // expected-warning@+1 {{implicit declaration of function 'svmlslb_u32'}}
62 return SVE_ACLE_FUNC(svmlslb,_u32,,)(op1, op2, op3);
63 }
64
test_svmlslb_u64(svuint64_t op1,svuint32_t op2,svuint32_t op3)65 svuint64_t test_svmlslb_u64(svuint64_t op1, svuint32_t op2, svuint32_t op3)
66 {
67 // CHECK-LABEL: test_svmlslb_u64
68 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.umlslb.nxv2i64(<vscale x 2 x i64> %op1, <vscale x 4 x i32> %op2, <vscale x 4 x i32> %op3)
69 // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
70 // overload-warning@+2 {{implicit declaration of function 'svmlslb'}}
71 // expected-warning@+1 {{implicit declaration of function 'svmlslb_u64'}}
72 return SVE_ACLE_FUNC(svmlslb,_u64,,)(op1, op2, op3);
73 }
74
test_svmlslb_n_s16(svint16_t op1,svint8_t op2,int8_t op3)75 svint16_t test_svmlslb_n_s16(svint16_t op1, svint8_t op2, int8_t op3)
76 {
77 // CHECK-LABEL: test_svmlslb_n_s16
78 // CHECK: %[[DUP:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.dup.x.nxv16i8(i8 %op3)
79 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.smlslb.nxv8i16(<vscale x 8 x i16> %op1, <vscale x 16 x i8> %op2, <vscale x 16 x i8> %[[DUP]])
80 // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
81 // overload-warning@+2 {{implicit declaration of function 'svmlslb'}}
82 // expected-warning@+1 {{implicit declaration of function 'svmlslb_n_s16'}}
83 return SVE_ACLE_FUNC(svmlslb,_n_s16,,)(op1, op2, op3);
84 }
85
test_svmlslb_n_s32(svint32_t op1,svint16_t op2,int16_t op3)86 svint32_t test_svmlslb_n_s32(svint32_t op1, svint16_t op2, int16_t op3)
87 {
88 // CHECK-LABEL: test_svmlslb_n_s32
89 // CHECK: %[[DUP:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.dup.x.nxv8i16(i16 %op3)
90 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.smlslb.nxv4i32(<vscale x 4 x i32> %op1, <vscale x 8 x i16> %op2, <vscale x 8 x i16> %[[DUP]])
91 // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
92 // overload-warning@+2 {{implicit declaration of function 'svmlslb'}}
93 // expected-warning@+1 {{implicit declaration of function 'svmlslb_n_s32'}}
94 return SVE_ACLE_FUNC(svmlslb,_n_s32,,)(op1, op2, op3);
95 }
96
test_svmlslb_n_s64(svint64_t op1,svint32_t op2,int32_t op3)97 svint64_t test_svmlslb_n_s64(svint64_t op1, svint32_t op2, int32_t op3)
98 {
99 // CHECK-LABEL: test_svmlslb_n_s64
100 // CHECK: %[[DUP:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.dup.x.nxv4i32(i32 %op3)
101 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.smlslb.nxv2i64(<vscale x 2 x i64> %op1, <vscale x 4 x i32> %op2, <vscale x 4 x i32> %[[DUP]])
102 // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
103 // overload-warning@+2 {{implicit declaration of function 'svmlslb'}}
104 // expected-warning@+1 {{implicit declaration of function 'svmlslb_n_s64'}}
105 return SVE_ACLE_FUNC(svmlslb,_n_s64,,)(op1, op2, op3);
106 }
107
test_svmlslb_n_u16(svuint16_t op1,svuint8_t op2,uint8_t op3)108 svuint16_t test_svmlslb_n_u16(svuint16_t op1, svuint8_t op2, uint8_t op3)
109 {
110 // CHECK-LABEL: test_svmlslb_n_u16
111 // CHECK: %[[DUP:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.dup.x.nxv16i8(i8 %op3)
112 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.umlslb.nxv8i16(<vscale x 8 x i16> %op1, <vscale x 16 x i8> %op2, <vscale x 16 x i8> %[[DUP]])
113 // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
114 // overload-warning@+2 {{implicit declaration of function 'svmlslb'}}
115 // expected-warning@+1 {{implicit declaration of function 'svmlslb_n_u16'}}
116 return SVE_ACLE_FUNC(svmlslb,_n_u16,,)(op1, op2, op3);
117 }
118
test_svmlslb_n_u32(svuint32_t op1,svuint16_t op2,uint16_t op3)119 svuint32_t test_svmlslb_n_u32(svuint32_t op1, svuint16_t op2, uint16_t op3)
120 {
121 // CHECK-LABEL: test_svmlslb_n_u32
122 // CHECK: %[[DUP:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.dup.x.nxv8i16(i16 %op3)
123 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.umlslb.nxv4i32(<vscale x 4 x i32> %op1, <vscale x 8 x i16> %op2, <vscale x 8 x i16> %[[DUP]])
124 // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
125 // overload-warning@+2 {{implicit declaration of function 'svmlslb'}}
126 // expected-warning@+1 {{implicit declaration of function 'svmlslb_n_u32'}}
127 return SVE_ACLE_FUNC(svmlslb,_n_u32,,)(op1, op2, op3);
128 }
129
test_svmlslb_n_u64(svuint64_t op1,svuint32_t op2,uint32_t op3)130 svuint64_t test_svmlslb_n_u64(svuint64_t op1, svuint32_t op2, uint32_t op3)
131 {
132 // CHECK-LABEL: test_svmlslb_n_u64
133 // CHECK: %[[DUP:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.dup.x.nxv4i32(i32 %op3)
134 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.umlslb.nxv2i64(<vscale x 2 x i64> %op1, <vscale x 4 x i32> %op2, <vscale x 4 x i32> %[[DUP]])
135 // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
136 // overload-warning@+2 {{implicit declaration of function 'svmlslb'}}
137 // expected-warning@+1 {{implicit declaration of function 'svmlslb_n_u64'}}
138 return SVE_ACLE_FUNC(svmlslb,_n_u64,,)(op1, op2, op3);
139 }
140
test_svmlslb_lane_s32(svint32_t op1,svint16_t op2,svint16_t op3)141 svint32_t test_svmlslb_lane_s32(svint32_t op1, svint16_t op2, svint16_t op3)
142 {
143 // CHECK-LABEL: test_svmlslb_lane_s32
144 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.smlslb.lane.nxv4i32(<vscale x 4 x i32> %op1, <vscale x 8 x i16> %op2, <vscale x 8 x i16> %op3, i32 0)
145 // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
146 // overload-warning@+2 {{implicit declaration of function 'svmlslb_lane'}}
147 // expected-warning@+1 {{implicit declaration of function 'svmlslb_lane_s32'}}
148 return SVE_ACLE_FUNC(svmlslb_lane,_s32,,)(op1, op2, op3, 0);
149 }
150
test_svmlslb_lane_s32_1(svint32_t op1,svint16_t op2,svint16_t op3)151 svint32_t test_svmlslb_lane_s32_1(svint32_t op1, svint16_t op2, svint16_t op3)
152 {
153 // CHECK-LABEL: test_svmlslb_lane_s32_1
154 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.smlslb.lane.nxv4i32(<vscale x 4 x i32> %op1, <vscale x 8 x i16> %op2, <vscale x 8 x i16> %op3, i32 7)
155 // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
156 // overload-warning@+2 {{implicit declaration of function 'svmlslb_lane'}}
157 // expected-warning@+1 {{implicit declaration of function 'svmlslb_lane_s32'}}
158 return SVE_ACLE_FUNC(svmlslb_lane,_s32,,)(op1, op2, op3, 7);
159 }
160
test_svmlslb_lane_s64(svint64_t op1,svint32_t op2,svint32_t op3)161 svint64_t test_svmlslb_lane_s64(svint64_t op1, svint32_t op2, svint32_t op3)
162 {
163 // CHECK-LABEL: test_svmlslb_lane_s64
164 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.smlslb.lane.nxv2i64(<vscale x 2 x i64> %op1, <vscale x 4 x i32> %op2, <vscale x 4 x i32> %op3, i32 0)
165 // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
166 // overload-warning@+2 {{implicit declaration of function 'svmlslb_lane'}}
167 // expected-warning@+1 {{implicit declaration of function 'svmlslb_lane_s64'}}
168 return SVE_ACLE_FUNC(svmlslb_lane,_s64,,)(op1, op2, op3, 0);
169 }
170
test_svmlslb_lane_s64_1(svint64_t op1,svint32_t op2,svint32_t op3)171 svint64_t test_svmlslb_lane_s64_1(svint64_t op1, svint32_t op2, svint32_t op3)
172 {
173 // CHECK-LABEL: test_svmlslb_lane_s64_1
174 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.smlslb.lane.nxv2i64(<vscale x 2 x i64> %op1, <vscale x 4 x i32> %op2, <vscale x 4 x i32> %op3, i32 3)
175 // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
176 // overload-warning@+2 {{implicit declaration of function 'svmlslb_lane'}}
177 // expected-warning@+1 {{implicit declaration of function 'svmlslb_lane_s64'}}
178 return SVE_ACLE_FUNC(svmlslb_lane,_s64,,)(op1, op2, op3, 3);
179 }
180
test_svmlslb_lane_u32(svuint32_t op1,svuint16_t op2,svuint16_t op3)181 svuint32_t test_svmlslb_lane_u32(svuint32_t op1, svuint16_t op2, svuint16_t op3)
182 {
183 // CHECK-LABEL: test_svmlslb_lane_u32
184 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.umlslb.lane.nxv4i32(<vscale x 4 x i32> %op1, <vscale x 8 x i16> %op2, <vscale x 8 x i16> %op3, i32 0)
185 // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
186 // overload-warning@+2 {{implicit declaration of function 'svmlslb_lane'}}
187 // expected-warning@+1 {{implicit declaration of function 'svmlslb_lane_u32'}}
188 return SVE_ACLE_FUNC(svmlslb_lane,_u32,,)(op1, op2, op3, 0);
189 }
190
test_svmlslb_lane_u32_1(svuint32_t op1,svuint16_t op2,svuint16_t op3)191 svuint32_t test_svmlslb_lane_u32_1(svuint32_t op1, svuint16_t op2, svuint16_t op3)
192 {
193 // CHECK-LABEL: test_svmlslb_lane_u32_1
194 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.umlslb.lane.nxv4i32(<vscale x 4 x i32> %op1, <vscale x 8 x i16> %op2, <vscale x 8 x i16> %op3, i32 7)
195 // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
196 // overload-warning@+2 {{implicit declaration of function 'svmlslb_lane'}}
197 // expected-warning@+1 {{implicit declaration of function 'svmlslb_lane_u32'}}
198 return SVE_ACLE_FUNC(svmlslb_lane,_u32,,)(op1, op2, op3, 7);
199 }
200
test_svmlslb_lane_u64(svuint64_t op1,svuint32_t op2,svuint32_t op3)201 svuint64_t test_svmlslb_lane_u64(svuint64_t op1, svuint32_t op2, svuint32_t op3)
202 {
203 // CHECK-LABEL: test_svmlslb_lane_u64
204 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.umlslb.lane.nxv2i64(<vscale x 2 x i64> %op1, <vscale x 4 x i32> %op2, <vscale x 4 x i32> %op3, i32 0)
205 // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
206 // overload-warning@+2 {{implicit declaration of function 'svmlslb_lane'}}
207 // expected-warning@+1 {{implicit declaration of function 'svmlslb_lane_u64'}}
208 return SVE_ACLE_FUNC(svmlslb_lane,_u64,,)(op1, op2, op3, 0);
209 }
210
test_svmlslb_lane_u64_1(svuint64_t op1,svuint32_t op2,svuint32_t op3)211 svuint64_t test_svmlslb_lane_u64_1(svuint64_t op1, svuint32_t op2, svuint32_t op3)
212 {
213 // CHECK-LABEL: test_svmlslb_lane_u64_1
214 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.umlslb.lane.nxv2i64(<vscale x 2 x i64> %op1, <vscale x 4 x i32> %op2, <vscale x 4 x i32> %op3, i32 3)
215 // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
216 // overload-warning@+2 {{implicit declaration of function 'svmlslb_lane'}}
217 // expected-warning@+1 {{implicit declaration of function 'svmlslb_lane_u64'}}
218 return SVE_ACLE_FUNC(svmlslb_lane,_u64,,)(op1, op2, op3, 3);
219 }
220
test_svmlslb_f32(svfloat32_t op1,svfloat16_t op2,svfloat16_t op3)221 svfloat32_t test_svmlslb_f32(svfloat32_t op1, svfloat16_t op2, svfloat16_t op3)
222 {
223 // CHECK-LABEL: test_svmlslb_f32
224 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.fmlslb.nxv4f32(<vscale x 4 x float> %op1, <vscale x 8 x half> %op2, <vscale x 8 x half> %op3)
225 // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]]
226 // overload-warning@+2 {{implicit declaration of function 'svmlslb'}}
227 // expected-warning@+1 {{implicit declaration of function 'svmlslb_f32'}}
228 return SVE_ACLE_FUNC(svmlslb,_f32,,)(op1, op2, op3);
229 }
230
test_svmlslb_n_f32(svfloat32_t op1,svfloat16_t op2,float16_t op3)231 svfloat32_t test_svmlslb_n_f32(svfloat32_t op1, svfloat16_t op2, float16_t op3)
232 {
233 // CHECK-LABEL: test_svmlslb_n_f32
234 // CHECK: %[[DUP:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.dup.x.nxv8f16(half %op3)
235 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.fmlslb.nxv4f32(<vscale x 4 x float> %op1, <vscale x 8 x half> %op2, <vscale x 8 x half> %[[DUP]])
236 // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]]
237 // overload-warning@+2 {{implicit declaration of function 'svmlslb'}}
238 // expected-warning@+1 {{implicit declaration of function 'svmlslb_n_f32'}}
239 return SVE_ACLE_FUNC(svmlslb,_n_f32,,)(op1, op2, op3);
240 }
241
test_svmlslb_lane_f32(svfloat32_t op1,svfloat16_t op2,svfloat16_t op3)242 svfloat32_t test_svmlslb_lane_f32(svfloat32_t op1, svfloat16_t op2, svfloat16_t op3)
243 {
244 // CHECK-LABEL: test_svmlslb_lane_f32
245 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.fmlslb.lane.nxv4f32(<vscale x 4 x float> %op1, <vscale x 8 x half> %op2, <vscale x 8 x half> %op3, i32 0)
246 // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]]
247 // overload-warning@+2 {{implicit declaration of function 'svmlslb_lane'}}
248 // expected-warning@+1 {{implicit declaration of function 'svmlslb_lane_f32'}}
249 return SVE_ACLE_FUNC(svmlslb_lane,_f32,,)(op1, op2, op3, 0);
250 }
251
test_svmlslb_lane_f32_1(svfloat32_t op1,svfloat16_t op2,svfloat16_t op3)252 svfloat32_t test_svmlslb_lane_f32_1(svfloat32_t op1, svfloat16_t op2, svfloat16_t op3)
253 {
254 // CHECK-LABEL: test_svmlslb_lane_f32_1
255 // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.fmlslb.lane.nxv4f32(<vscale x 4 x float> %op1, <vscale x 8 x half> %op2, <vscale x 8 x half> %op3, i32 7)
256 // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]]
257 // overload-warning@+2 {{implicit declaration of function 'svmlslb_lane'}}
258 // expected-warning@+1 {{implicit declaration of function 'svmlslb_lane_f32'}}
259 return SVE_ACLE_FUNC(svmlslb_lane,_f32,,)(op1, op2, op3, 7);
260 }
261