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