• Home
  • Raw
  • Download

Lines Matching +full:has +full:- +full:value

1 // RUN: %clang_cc1 -triple i686-pc-linux-gnu -fsyntax-only -verify %s -Wabsolute-value -Wno-int-con…
2 // RUN: %clang_cc1 -triple i686-pc-linux-gnu -fsyntax-only %s -Wabsolute-value -Wno-int-conversion
22 …// expected-warning@-1 {{using floating point absolute value function 'fabsf' when argument is of … in test_int()
23 // expected-note@-2 {{use function 'abs' instead}} in test_int()
24 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"abs" in test_int()
26 …// expected-warning@-1 {{using floating point absolute value function 'fabs' when argument is of i… in test_int()
27 // expected-note@-2 {{use function 'abs' instead}} in test_int()
28 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"abs" in test_int()
30 …// expected-warning@-1 {{using floating point absolute value function 'fabsl' when argument is of … in test_int()
31 // expected-note@-2 {{use function 'abs' instead}} in test_int()
32 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"abs" in test_int()
35 …// expected-warning@-1 {{using complex absolute value function 'cabsf' when argument is of integer… in test_int()
36 // expected-note@-2 {{use function 'abs' instead}} in test_int()
37 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"abs" in test_int()
39 …// expected-warning@-1 {{using complex absolute value function 'cabs' when argument is of integer … in test_int()
40 // expected-note@-2 {{use function 'abs' instead}} in test_int()
41 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"abs" in test_int()
43 …// expected-warning@-1 {{using complex absolute value function 'cabsl' when argument is of integer… in test_int()
44 // expected-note@-2 {{use function 'abs' instead}} in test_int()
45 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"abs" in test_int()
52 …// expected-warning@-1 {{using floating point absolute value function '__builtin_fabsf' when argum… in test_int()
53 // expected-note@-2 {{use function '__builtin_abs' instead}} in test_int()
54 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_abs" in test_int()
56 …// expected-warning@-1 {{using floating point absolute value function '__builtin_fabs' when argume… in test_int()
57 // expected-note@-2 {{use function '__builtin_abs' instead}} in test_int()
58 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"__builtin_abs" in test_int()
60 …// expected-warning@-1 {{using floating point absolute value function '__builtin_fabsl' when argum… in test_int()
61 // expected-note@-2 {{use function '__builtin_abs' instead}} in test_int()
62 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_abs" in test_int()
65 …// expected-warning@-1 {{using complex absolute value function '__builtin_cabsf' when argument is … in test_int()
66 // expected-note@-2 {{use function '__builtin_abs' instead}} in test_int()
67 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_abs" in test_int()
69 …// expected-warning@-1 {{using complex absolute value function '__builtin_cabs' when argument is o… in test_int()
70 // expected-note@-2 {{use function '__builtin_abs' instead}} in test_int()
71 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"__builtin_abs" in test_int()
73 …// expected-warning@-1 {{using complex absolute value function '__builtin_cabsl' when argument is … in test_int()
74 // expected-note@-2 {{use function '__builtin_abs' instead}} in test_int()
75 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_abs" in test_int()
79 (void)abs(x); // no warning - int and long are same length for this target in test_long()
84 …// expected-warning@-1 {{using floating point absolute value function 'fabsf' when argument is of … in test_long()
85 // expected-note@-2 {{use function 'labs' instead}} in test_long()
86 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"labs" in test_long()
88 …// expected-warning@-1 {{using floating point absolute value function 'fabs' when argument is of i… in test_long()
89 // expected-note@-2 {{use function 'labs' instead}} in test_long()
90 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"labs" in test_long()
92 …// expected-warning@-1 {{using floating point absolute value function 'fabsl' when argument is of … in test_long()
93 // expected-note@-2 {{use function 'labs' instead}} in test_long()
94 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"labs" in test_long()
97 …// expected-warning@-1 {{using complex absolute value function 'cabsf' when argument is of integer… in test_long()
98 // expected-note@-2 {{use function 'labs' instead}} in test_long()
99 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"labs" in test_long()
101 …// expected-warning@-1 {{using complex absolute value function 'cabs' when argument is of integer … in test_long()
102 // expected-note@-2 {{use function 'labs' instead}} in test_long()
103 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"labs" in test_long()
105 …// expected-warning@-1 {{using complex absolute value function 'cabsl' when argument is of integer… in test_long()
106 // expected-note@-2 {{use function 'labs' instead}} in test_long()
107 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"labs" in test_long()
109 (void)__builtin_abs(x); // no warning - int and long are same length for in test_long()
115 …// expected-warning@-1 {{using floating point absolute value function '__builtin_fabsf' when argum… in test_long()
116 // expected-note@-2 {{use function '__builtin_labs' instead}} in test_long()
117 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_labs" in test_long()
119 …// expected-warning@-1 {{using floating point absolute value function '__builtin_fabs' when argume… in test_long()
120 // expected-note@-2 {{use function '__builtin_labs' instead}} in test_long()
121 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"__builtin_labs" in test_long()
123 …// expected-warning@-1 {{using floating point absolute value function '__builtin_fabsl' when argum… in test_long()
124 // expected-note@-2 {{use function '__builtin_labs' instead}} in test_long()
125 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_labs" in test_long()
128 …// expected-warning@-1 {{using complex absolute value function '__builtin_cabsf' when argument is … in test_long()
129 // expected-note@-2 {{use function '__builtin_labs' instead}} in test_long()
130 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_labs" in test_long()
132 …// expected-warning@-1 {{using complex absolute value function '__builtin_cabs' when argument is o… in test_long()
133 // expected-note@-2 {{use function '__builtin_labs' instead}} in test_long()
134 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"__builtin_labs" in test_long()
136 …// expected-warning@-1 {{using complex absolute value function '__builtin_cabsl' when argument is … in test_long()
137 // expected-note@-2 {{use function '__builtin_labs' instead}} in test_long()
138 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_labs" in test_long()
143 …ed-warning@-1{{absolute value function 'abs' given an argument of type 'long long' but has paramet… in test_long_long()
144 // expected-note@-2{{use function 'llabs' instead}} in test_long_long()
145 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:12}:"llabs" in test_long_long()
147 …d-warning@-1{{absolute value function 'labs' given an argument of type 'long long' but has paramet… in test_long_long()
148 // expected-note@-2{{use function 'llabs' instead}} in test_long_long()
149 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"llabs" in test_long_long()
153 …// expected-warning@-1 {{using floating point absolute value function 'fabsf' when argument is of … in test_long_long()
154 // expected-note@-2 {{use function 'llabs' instead}} in test_long_long()
155 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"llabs" in test_long_long()
157 …// expected-warning@-1 {{using floating point absolute value function 'fabs' when argument is of i… in test_long_long()
158 // expected-note@-2 {{use function 'llabs' instead}} in test_long_long()
159 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"llabs" in test_long_long()
161 …// expected-warning@-1 {{using floating point absolute value function 'fabsl' when argument is of … in test_long_long()
162 // expected-note@-2 {{use function 'llabs' instead}} in test_long_long()
163 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"llabs" in test_long_long()
166 …// expected-warning@-1 {{using complex absolute value function 'cabsf' when argument is of integer… in test_long_long()
167 // expected-note@-2 {{use function 'llabs' instead}} in test_long_long()
168 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"llabs" in test_long_long()
170 …// expected-warning@-1 {{using complex absolute value function 'cabs' when argument is of integer … in test_long_long()
171 // expected-note@-2 {{use function 'llabs' instead}} in test_long_long()
172 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"llabs" in test_long_long()
174 …// expected-warning@-1 {{using complex absolute value function 'cabsl' when argument is of integer… in test_long_long()
175 // expected-note@-2 {{use function 'llabs' instead}} in test_long_long()
176 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"llabs" in test_long_long()
179-warning@-1{{absolute value function '__builtin_abs' given an argument of type 'long long' but has in test_long_long()
180 // expected-note@-2{{use function '__builtin_llabs' instead}} in test_long_long()
181 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:22}:"__builtin_llabs" in test_long_long()
183-warning@-1{{absolute value function '__builtin_labs' given an argument of type 'long long' but ha… in test_long_long()
184 // expected-note@-2{{use function '__builtin_llabs' instead}} in test_long_long()
185 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"__builtin_llabs" in test_long_long()
189 …// expected-warning@-1 {{using floating point absolute value function '__builtin_fabsf' when argum… in test_long_long()
190 // expected-note@-2 {{use function '__builtin_llabs' instead}} in test_long_long()
191 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_llabs" in test_long_long()
193 …// expected-warning@-1 {{using floating point absolute value function '__builtin_fabs' when argume… in test_long_long()
194 // expected-note@-2 {{use function '__builtin_llabs' instead}} in test_long_long()
195 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"__builtin_llabs" in test_long_long()
197 …// expected-warning@-1 {{using floating point absolute value function '__builtin_fabsl' when argum… in test_long_long()
198 // expected-note@-2 {{use function '__builtin_llabs' instead}} in test_long_long()
199 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_llabs" in test_long_long()
202 …// expected-warning@-1 {{using complex absolute value function '__builtin_cabsf' when argument is … in test_long_long()
203 // expected-note@-2 {{use function '__builtin_llabs' instead}} in test_long_long()
204 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_llabs" in test_long_long()
206 …// expected-warning@-1 {{using complex absolute value function '__builtin_cabs' when argument is o… in test_long_long()
207 // expected-note@-2 {{use function '__builtin_llabs' instead}} in test_long_long()
208 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"__builtin_llabs" in test_long_long()
210 …// expected-warning@-1 {{using complex absolute value function '__builtin_cabsl' when argument is … in test_long_long()
211 // expected-note@-2 {{use function '__builtin_llabs' instead}} in test_long_long()
212 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_llabs" in test_long_long()
217 …// expected-warning@-1 {{using integer absolute value function 'abs' when argument is of floating … in test_float()
218 // expected-note@-2 {{use function 'fabsf' instead}} in test_float()
219 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:12}:"fabsf" in test_float()
221 …// expected-warning@-1 {{using integer absolute value function 'labs' when argument is of floating… in test_float()
222 // expected-note@-2 {{use function 'fabsf' instead}} in test_float()
223 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"fabsf" in test_float()
225 …// expected-warning@-1 {{using integer absolute value function 'llabs' when argument is of floatin… in test_float()
226 // expected-note@-2 {{use function 'fabsf' instead}} in test_float()
227 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"fabsf" in test_float()
234 …// expected-warning@-1 {{using complex absolute value function 'cabsf' when argument is of floatin… in test_float()
235 // expected-note@-2 {{use function 'fabsf' instead}} in test_float()
236 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"fabsf" in test_float()
238 …// expected-warning@-1 {{using complex absolute value function 'cabs' when argument is of floating… in test_float()
239 // expected-note@-2 {{use function 'fabsf' instead}} in test_float()
240 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"fabsf" in test_float()
242 …// expected-warning@-1 {{using complex absolute value function 'cabsl' when argument is of floatin… in test_float()
243 // expected-note@-2 {{use function 'fabsf' instead}} in test_float()
244 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"fabsf" in test_float()
247 …// expected-warning@-1 {{using integer absolute value function '__builtin_abs' when argument is of… in test_float()
248 // expected-note@-2 {{use function '__builtin_fabsf' instead}} in test_float()
249 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:22}:"__builtin_fabsf" in test_float()
251 …// expected-warning@-1 {{using integer absolute value function '__builtin_labs' when argument is o… in test_float()
252 // expected-note@-2 {{use function '__builtin_fabsf' instead}} in test_float()
253 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"__builtin_fabsf" in test_float()
255 …// expected-warning@-1 {{using integer absolute value function '__builtin_llabs' when argument is … in test_float()
256 // expected-note@-2 {{use function '__builtin_fabsf' instead}} in test_float()
257 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_fabsf" in test_float()
264 …// expected-warning@-1 {{using complex absolute value function '__builtin_cabsf' when argument is … in test_float()
265 // expected-note@-2 {{use function '__builtin_fabsf' instead}} in test_float()
266 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_fabsf" in test_float()
268 …// expected-warning@-1 {{using complex absolute value function '__builtin_cabs' when argument is o… in test_float()
269 // expected-note@-2 {{use function '__builtin_fabsf' instead}} in test_float()
270 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"__builtin_fabsf" in test_float()
272 …// expected-warning@-1 {{using complex absolute value function '__builtin_cabsl' when argument is … in test_float()
273 // expected-note@-2 {{use function '__builtin_fabsf' instead}} in test_float()
274 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_fabsf" in test_float()
279 …// expected-warning@-1 {{using integer absolute value function 'abs' when argument is of floating … in test_double()
280 // expected-note@-2 {{use function 'fabs' instead}} in test_double()
281 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:12}:"fabs" in test_double()
283 …// expected-warning@-1 {{using integer absolute value function 'labs' when argument is of floating… in test_double()
284 // expected-note@-2 {{use function 'fabs' instead}} in test_double()
285 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"fabs" in test_double()
287 …// expected-warning@-1 {{using integer absolute value function 'llabs' when argument is of floatin… in test_double()
288 // expected-note@-2 {{use function 'fabs' instead}} in test_double()
289 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"fabs" in test_double()
292 …ed-warning@-1{{absolute value function 'fabsf' given an argument of type 'double' but has paramete… in test_double()
293 // expected-note@-2{{use function 'fabs' instead}} in test_double()
294 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"fabs" in test_double()
299 …// expected-warning@-1 {{using complex absolute value function 'cabsf' when argument is of floatin… in test_double()
300 // expected-note@-2 {{use function 'fabs' instead}} in test_double()
301 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"fabs" in test_double()
303 …// expected-warning@-1 {{using complex absolute value function 'cabs' when argument is of floating… in test_double()
304 // expected-note@-2 {{use function 'fabs' instead}} in test_double()
305 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"fabs" in test_double()
307 …// expected-warning@-1 {{using complex absolute value function 'cabsl' when argument is of floatin… in test_double()
308 // expected-note@-2 {{use function 'fabs' instead}} in test_double()
309 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"fabs" in test_double()
312 …// expected-warning@-1 {{using integer absolute value function '__builtin_abs' when argument is of… in test_double()
313 // expected-note@-2 {{use function '__builtin_fabs' instead}} in test_double()
314 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:22}:"__builtin_fabs" in test_double()
316 …// expected-warning@-1 {{using integer absolute value function '__builtin_labs' when argument is o… in test_double()
317 // expected-note@-2 {{use function '__builtin_fabs' instead}} in test_double()
318 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"__builtin_fabs" in test_double()
320 …// expected-warning@-1 {{using integer absolute value function '__builtin_llabs' when argument is … in test_double()
321 // expected-note@-2 {{use function '__builtin_fabs' instead}} in test_double()
322 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_fabs" in test_double()
325-warning@-1{{absolute value function '__builtin_fabsf' given an argument of type 'double' but has in test_double()
326 // expected-note@-2{{use function '__builtin_fabs' instead}} in test_double()
327 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_fabs" in test_double()
332 …// expected-warning@-1 {{using complex absolute value function '__builtin_cabsf' when argument is … in test_double()
333 // expected-note@-2 {{use function '__builtin_fabs' instead}} in test_double()
334 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_fabs" in test_double()
336 …// expected-warning@-1 {{using complex absolute value function '__builtin_cabs' when argument is o… in test_double()
337 // expected-note@-2 {{use function '__builtin_fabs' instead}} in test_double()
338 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"__builtin_fabs" in test_double()
340 …// expected-warning@-1 {{using complex absolute value function '__builtin_cabsl' when argument is … in test_double()
341 // expected-note@-2 {{use function '__builtin_fabs' instead}} in test_double()
342 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_fabs" in test_double()
347 …// expected-warning@-1 {{using integer absolute value function 'abs' when argument is of floating … in test_long_double()
348 // expected-note@-2 {{use function 'fabsl' instead}} in test_long_double()
349 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:12}:"fabsl" in test_long_double()
351 …// expected-warning@-1 {{using integer absolute value function 'labs' when argument is of floating… in test_long_double()
352 // expected-note@-2 {{use function 'fabsl' instead}} in test_long_double()
353 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"fabsl" in test_long_double()
355 …// expected-warning@-1 {{using integer absolute value function 'llabs' when argument is of floatin… in test_long_double()
356 // expected-note@-2 {{use function 'fabsl' instead}} in test_long_double()
357 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"fabsl" in test_long_double()
360-warning@-1{{absolute value function 'fabsf' given an argument of type 'long double' but has param… in test_long_double()
361 // expected-note@-2{{use function 'fabsl' instead}} in test_long_double()
362 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"fabsl" in test_long_double()
364-warning@-1{{absolute value function 'fabs' given an argument of type 'long double' but has parame… in test_long_double()
365 // expected-note@-2{{use function 'fabsl' instead}} in test_long_double()
366 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"fabsl" in test_long_double()
370 …// expected-warning@-1 {{using complex absolute value function 'cabsf' when argument is of floatin… in test_long_double()
371 // expected-note@-2 {{use function 'fabsl' instead}} in test_long_double()
372 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"fabsl" in test_long_double()
374 …// expected-warning@-1 {{using complex absolute value function 'cabs' when argument is of floating… in test_long_double()
375 // expected-note@-2 {{use function 'fabsl' instead}} in test_long_double()
376 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"fabsl" in test_long_double()
378 …// expected-warning@-1 {{using complex absolute value function 'cabsl' when argument is of floatin… in test_long_double()
379 // expected-note@-2 {{use function 'fabsl' instead}} in test_long_double()
380 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"fabsl" in test_long_double()
383 …// expected-warning@-1 {{using integer absolute value function '__builtin_abs' when argument is of… in test_long_double()
384 // expected-note@-2 {{use function '__builtin_fabsl' instead}} in test_long_double()
385 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:22}:"__builtin_fabsl" in test_long_double()
387 …// expected-warning@-1 {{using integer absolute value function '__builtin_labs' when argument is o… in test_long_double()
388 // expected-note@-2 {{use function '__builtin_fabsl' instead}} in test_long_double()
389 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"__builtin_fabsl" in test_long_double()
391 …// expected-warning@-1 {{using integer absolute value function '__builtin_llabs' when argument is … in test_long_double()
392 // expected-note@-2 {{use function '__builtin_fabsl' instead}} in test_long_double()
393 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_fabsl" in test_long_double()
396-warning@-1{{absolute value function '__builtin_fabsf' given an argument of type 'long double' but… in test_long_double()
397 // expected-note@-2{{use function '__builtin_fabsl' instead}} in test_long_double()
398 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_fabsl" in test_long_double()
400-warning@-1{{absolute value function '__builtin_fabs' given an argument of type 'long double' but in test_long_double()
401 // expected-note@-2{{use function '__builtin_fabsl' instead}} in test_long_double()
402 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"__builtin_fabsl" in test_long_double()
406 …// expected-warning@-1 {{using complex absolute value function '__builtin_cabsf' when argument is … in test_long_double()
407 // expected-note@-2 {{use function '__builtin_fabsl' instead}} in test_long_double()
408 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_fabsl" in test_long_double()
410 …// expected-warning@-1 {{using complex absolute value function '__builtin_cabs' when argument is o… in test_long_double()
411 // expected-note@-2 {{use function '__builtin_fabsl' instead}} in test_long_double()
412 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"__builtin_fabsl" in test_long_double()
414 …// expected-warning@-1 {{using complex absolute value function '__builtin_cabsl' when argument is … in test_long_double()
415 // expected-note@-2 {{use function '__builtin_fabsl' instead}} in test_long_double()
416 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_fabsl" in test_long_double()
421 …// expected-warning@-1 {{using integer absolute value function 'abs' when argument is of complex t… in test_complex_float()
422 // expected-note@-2 {{use function 'cabsf' instead}} in test_complex_float()
423 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:12}:"cabsf" in test_complex_float()
425 …// expected-warning@-1 {{using integer absolute value function 'labs' when argument is of complex … in test_complex_float()
426 // expected-note@-2 {{use function 'cabsf' instead}} in test_complex_float()
427 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"cabsf" in test_complex_float()
429 …// expected-warning@-1 {{using integer absolute value function 'llabs' when argument is of complex… in test_complex_float()
430 // expected-note@-2 {{use function 'cabsf' instead}} in test_complex_float()
431 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"cabsf" in test_complex_float()
434 …// expected-warning@-1 {{using floating point absolute value function 'fabsf' when argument is of … in test_complex_float()
435 // expected-note@-2 {{use function 'cabsf' instead}} in test_complex_float()
436 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"cabsf" in test_complex_float()
438 …// expected-warning@-1 {{using floating point absolute value function 'fabs' when argument is of c… in test_complex_float()
439 // expected-note@-2 {{use function 'cabsf' instead}} in test_complex_float()
440 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"cabsf" in test_complex_float()
442 …// expected-warning@-1 {{using floating point absolute value function 'fabsl' when argument is of … in test_complex_float()
443 // expected-note@-2 {{use function 'cabsf' instead}} in test_complex_float()
444 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"cabsf" in test_complex_float()
451 …// expected-warning@-1 {{using integer absolute value function '__builtin_abs' when argument is of… in test_complex_float()
452 // expected-note@-2 {{use function '__builtin_cabsf' instead}} in test_complex_float()
453 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:22}:"__builtin_cabsf" in test_complex_float()
455 …// expected-warning@-1 {{using integer absolute value function '__builtin_labs' when argument is o… in test_complex_float()
456 // expected-note@-2 {{use function '__builtin_cabsf' instead}} in test_complex_float()
457 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"__builtin_cabsf" in test_complex_float()
459 …// expected-warning@-1 {{using integer absolute value function '__builtin_llabs' when argument is … in test_complex_float()
460 // expected-note@-2 {{use function '__builtin_cabsf' instead}} in test_complex_float()
461 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_cabsf" in test_complex_float()
464 …// expected-warning@-1 {{using floating point absolute value function '__builtin_fabsf' when argum… in test_complex_float()
465 // expected-note@-2 {{use function '__builtin_cabsf' instead}} in test_complex_float()
466 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_cabsf" in test_complex_float()
468 …// expected-warning@-1 {{using floating point absolute value function '__builtin_fabs' when argume… in test_complex_float()
469 // expected-note@-2 {{use function '__builtin_cabsf' instead}} in test_complex_float()
470 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"__builtin_cabsf" in test_complex_float()
472 …// expected-warning@-1 {{using floating point absolute value function '__builtin_fabsl' when argum… in test_complex_float()
473 // expected-note@-2 {{use function '__builtin_cabsf' instead}} in test_complex_float()
474 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_cabsf" in test_complex_float()
483 …// expected-warning@-1 {{using integer absolute value function 'abs' when argument is of complex t… in test_complex_double()
484 // expected-note@-2 {{use function 'cabs' instead}} in test_complex_double()
485 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:12}:"cabs" in test_complex_double()
487 …// expected-warning@-1 {{using integer absolute value function 'labs' when argument is of complex … in test_complex_double()
488 // expected-note@-2 {{use function 'cabs' instead}} in test_complex_double()
489 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"cabs" in test_complex_double()
491 …// expected-warning@-1 {{using integer absolute value function 'llabs' when argument is of complex… in test_complex_double()
492 // expected-note@-2 {{use function 'cabs' instead}} in test_complex_double()
493 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"cabs" in test_complex_double()
496 …// expected-warning@-1 {{using floating point absolute value function 'fabsf' when argument is of … in test_complex_double()
497 // expected-note@-2 {{use function 'cabs' instead}} in test_complex_double()
498 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"cabs" in test_complex_double()
500 …// expected-warning@-1 {{using floating point absolute value function 'fabs' when argument is of c… in test_complex_double()
501 // expected-note@-2 {{use function 'cabs' instead}} in test_complex_double()
502 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"cabs" in test_complex_double()
504 …// expected-warning@-1 {{using floating point absolute value function 'fabsl' when argument is of … in test_complex_double()
505 // expected-note@-2 {{use function 'cabs' instead}} in test_complex_double()
506 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"cabs" in test_complex_double()
509-warning@-1 {{absolute value function 'cabsf' given an argument of type '_Complex double' but has in test_complex_double()
510 // expected-note@-2 {{use function 'cabs' instead}} in test_complex_double()
511 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"cabs" in test_complex_double()
516 …// expected-warning@-1 {{using integer absolute value function '__builtin_abs' when argument is of… in test_complex_double()
517 // expected-note@-2 {{use function '__builtin_cabs' instead}} in test_complex_double()
518 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:22}:"__builtin_cabs" in test_complex_double()
520 …// expected-warning@-1 {{using integer absolute value function '__builtin_labs' when argument is o… in test_complex_double()
521 // expected-note@-2 {{use function '__builtin_cabs' instead}} in test_complex_double()
522 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"__builtin_cabs" in test_complex_double()
524 …// expected-warning@-1 {{using integer absolute value function '__builtin_llabs' when argument is … in test_complex_double()
525 // expected-note@-2 {{use function '__builtin_cabs' instead}} in test_complex_double()
526 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_cabs" in test_complex_double()
529 …// expected-warning@-1 {{using floating point absolute value function '__builtin_fabsf' when argum… in test_complex_double()
530 // expected-note@-2 {{use function '__builtin_cabs' instead}} in test_complex_double()
531 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_cabs" in test_complex_double()
533 …// expected-warning@-1 {{using floating point absolute value function '__builtin_fabs' when argume… in test_complex_double()
534 // expected-note@-2 {{use function '__builtin_cabs' instead}} in test_complex_double()
535 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"__builtin_cabs" in test_complex_double()
537 …// expected-warning@-1 {{using floating point absolute value function '__builtin_fabsl' when argum… in test_complex_double()
538 // expected-note@-2 {{use function '__builtin_cabs' instead}} in test_complex_double()
539 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_cabs" in test_complex_double()
542-warning@-1 {{absolute value function '__builtin_cabsf' given an argument of type '_Complex double… in test_complex_double()
543 // expected-note@-2 {{use function '__builtin_cabs' instead}} in test_complex_double()
544 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_cabs" in test_complex_double()
551 …// expected-warning@-1 {{using integer absolute value function 'abs' when argument is of complex t… in test_complex_long_double()
552 // expected-note@-2 {{use function 'cabsl' instead}} in test_complex_long_double()
553 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:12}:"cabsl" in test_complex_long_double()
555 …// expected-warning@-1 {{using integer absolute value function 'labs' when argument is of complex … in test_complex_long_double()
556 // expected-note@-2 {{use function 'cabsl' instead}} in test_complex_long_double()
557 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"cabsl" in test_complex_long_double()
559 …// expected-warning@-1 {{using integer absolute value function 'llabs' when argument is of complex… in test_complex_long_double()
560 // expected-note@-2 {{use function 'cabsl' instead}} in test_complex_long_double()
561 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"cabsl" in test_complex_long_double()
564 …// expected-warning@-1 {{using floating point absolute value function 'fabsf' when argument is of … in test_complex_long_double()
565 // expected-note@-2 {{use function 'cabsl' instead}} in test_complex_long_double()
566 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"cabsl" in test_complex_long_double()
568 …// expected-warning@-1 {{using floating point absolute value function 'fabs' when argument is of c… in test_complex_long_double()
569 // expected-note@-2 {{use function 'cabsl' instead}} in test_complex_long_double()
570 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"cabsl" in test_complex_long_double()
572 …// expected-warning@-1 {{using floating point absolute value function 'fabsl' when argument is of … in test_complex_long_double()
573 // expected-note@-2 {{use function 'cabsl' instead}} in test_complex_long_double()
574 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"cabsl" in test_complex_long_double()
577-warning@-1 {{absolute value function 'cabsf' given an argument of type '_Complex long double' but… in test_complex_long_double()
578 // expected-note@-2 {{use function 'cabsl' instead}} in test_complex_long_double()
579 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"cabsl" in test_complex_long_double()
581-warning@-1 {{absolute value function 'cabs' given an argument of type '_Complex long double' but in test_complex_long_double()
582 // expected-note@-2 {{use function 'cabsl' instead}} in test_complex_long_double()
583 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"cabsl" in test_complex_long_double()
587 …// expected-warning@-1 {{using integer absolute value function '__builtin_abs' when argument is of… in test_complex_long_double()
588 // expected-note@-2 {{use function '__builtin_cabsl' instead}} in test_complex_long_double()
589 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:22}:"__builtin_cabsl" in test_complex_long_double()
591 …// expected-warning@-1 {{using integer absolute value function '__builtin_labs' when argument is o… in test_complex_long_double()
592 // expected-note@-2 {{use function '__builtin_cabsl' instead}} in test_complex_long_double()
593 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"__builtin_cabsl" in test_complex_long_double()
595 …// expected-warning@-1 {{using integer absolute value function '__builtin_llabs' when argument is … in test_complex_long_double()
596 // expected-note@-2 {{use function '__builtin_cabsl' instead}} in test_complex_long_double()
597 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_cabsl" in test_complex_long_double()
600 …// expected-warning@-1 {{using floating point absolute value function '__builtin_fabsf' when argum… in test_complex_long_double()
601 // expected-note@-2 {{use function '__builtin_cabsl' instead}} in test_complex_long_double()
602 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_cabsl" in test_complex_long_double()
604 …// expected-warning@-1 {{using floating point absolute value function '__builtin_fabs' when argume… in test_complex_long_double()
605 // expected-note@-2 {{use function '__builtin_cabsl' instead}} in test_complex_long_double()
606 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"__builtin_cabsl" in test_complex_long_double()
608 …// expected-warning@-1 {{using floating point absolute value function '__builtin_fabsl' when argum… in test_complex_long_double()
609 // expected-note@-2 {{use function '__builtin_cabsl' instead}} in test_complex_long_double()
610 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_cabsl" in test_complex_long_double()
613-warning@-1 {{absolute value function '__builtin_cabsf' given an argument of type '_Complex long d… in test_complex_long_double()
614 // expected-note@-2 {{use function '__builtin_cabsl' instead}} in test_complex_long_double()
615 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"__builtin_cabsl" in test_complex_long_double()
617-warning@-1 {{absolute value function '__builtin_cabs' given an argument of type '_Complex long do… in test_complex_long_double()
618 // expected-note@-2 {{use function '__builtin_cabsl' instead}} in test_complex_long_double()
619 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"__builtin_cabsl" in test_complex_long_double()
625 // expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned int' has no effect}} in test_unsigned_int()
626 // expected-note@-2 {{remove the call to 'abs' since unsigned values cannot be negative}} in test_unsigned_int()
627 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:12}:"" in test_unsigned_int()
629 // expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned int' has no effect}} in test_unsigned_int()
630 // expected-note@-2 {{remove the call to 'labs' since unsigned values cannot be negative}} in test_unsigned_int()
631 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"" in test_unsigned_int()
633 // expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned int' has no effect}} in test_unsigned_int()
634 // expected-note@-2 {{remove the call to 'llabs' since unsigned values cannot be negative}} in test_unsigned_int()
635 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"" in test_unsigned_int()
638 // expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned int' has no effect}} in test_unsigned_int()
639 // expected-note@-2 {{remove the call to 'fabsf' since unsigned values cannot be negative}} in test_unsigned_int()
640 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"" in test_unsigned_int()
642 // expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned int' has no effect}} in test_unsigned_int()
643 // expected-note@-2 {{remove the call to 'fabs' since unsigned values cannot be negative}} in test_unsigned_int()
644 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"" in test_unsigned_int()
646 // expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned int' has no effect}} in test_unsigned_int()
647 // expected-note@-2 {{remove the call to 'fabsl' since unsigned values cannot be negative}} in test_unsigned_int()
648 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"" in test_unsigned_int()
651 // expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned int' has no effect}} in test_unsigned_int()
652 // expected-note@-2 {{remove the call to 'cabsf' since unsigned values cannot be negative}} in test_unsigned_int()
653 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"" in test_unsigned_int()
655 // expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned int' has no effect}} in test_unsigned_int()
656 // expected-note@-2 {{remove the call to 'cabs' since unsigned values cannot be negative}} in test_unsigned_int()
657 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"" in test_unsigned_int()
659 // expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned int' has no effect}} in test_unsigned_int()
660 // expected-note@-2 {{remove the call to 'cabsl' since unsigned values cannot be negative}} in test_unsigned_int()
661 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"" in test_unsigned_int()
664 // expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned int' has no effect}} in test_unsigned_int()
665 …// expected-note@-2 {{remove the call to '__builtin_abs' since unsigned values cannot be negative}} in test_unsigned_int()
666 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:22}:"" in test_unsigned_int()
668 // expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned int' has no effect}} in test_unsigned_int()
669 …// expected-note@-2 {{remove the call to '__builtin_labs' since unsigned values cannot be negative… in test_unsigned_int()
670 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"" in test_unsigned_int()
672 // expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned int' has no effect}} in test_unsigned_int()
673 …// expected-note@-2 {{remove the call to '__builtin_llabs' since unsigned values cannot be negativ… in test_unsigned_int()
674 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"" in test_unsigned_int()
677 // expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned int' has no effect}} in test_unsigned_int()
678 …// expected-note@-2 {{remove the call to '__builtin_fabsf' since unsigned values cannot be negativ… in test_unsigned_int()
679 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"" in test_unsigned_int()
681 // expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned int' has no effect}} in test_unsigned_int()
682 …// expected-note@-2 {{remove the call to '__builtin_fabs' since unsigned values cannot be negative… in test_unsigned_int()
683 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"" in test_unsigned_int()
685 // expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned int' has no effect}} in test_unsigned_int()
686 …// expected-note@-2 {{remove the call to '__builtin_fabsl' since unsigned values cannot be negativ… in test_unsigned_int()
687 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"" in test_unsigned_int()
690 // expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned int' has no effect}} in test_unsigned_int()
691 …// expected-note@-2 {{remove the call to '__builtin_cabsf' since unsigned values cannot be negativ… in test_unsigned_int()
692 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"" in test_unsigned_int()
694 // expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned int' has no effect}} in test_unsigned_int()
695 …// expected-note@-2 {{remove the call to '__builtin_cabs' since unsigned values cannot be negative… in test_unsigned_int()
696 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"" in test_unsigned_int()
698 // expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned int' has no effect}} in test_unsigned_int()
699 …// expected-note@-2 {{remove the call to '__builtin_cabsl' since unsigned values cannot be negativ… in test_unsigned_int()
700 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"" in test_unsigned_int()
705 …// expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned long' has no effect}} in test_unsigned_long()
706 // expected-note@-2 {{remove the call to 'abs' since unsigned values cannot be negative}} in test_unsigned_long()
707 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:12}:"" in test_unsigned_long()
709 …// expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned long' has no effect}} in test_unsigned_long()
710 // expected-note@-2 {{remove the call to 'labs' since unsigned values cannot be negative}} in test_unsigned_long()
711 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"" in test_unsigned_long()
713 …// expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned long' has no effect}} in test_unsigned_long()
714 // expected-note@-2 {{remove the call to 'llabs' since unsigned values cannot be negative}} in test_unsigned_long()
715 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"" in test_unsigned_long()
718 …// expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned long' has no effect}} in test_unsigned_long()
719 // expected-note@-2 {{remove the call to 'fabsf' since unsigned values cannot be negative}} in test_unsigned_long()
720 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"" in test_unsigned_long()
722 …// expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned long' has no effect}} in test_unsigned_long()
723 // expected-note@-2 {{remove the call to 'fabs' since unsigned values cannot be negative}} in test_unsigned_long()
724 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"" in test_unsigned_long()
726 …// expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned long' has no effect}} in test_unsigned_long()
727 // expected-note@-2 {{remove the call to 'fabsl' since unsigned values cannot be negative}} in test_unsigned_long()
728 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"" in test_unsigned_long()
731 …// expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned long' has no effect}} in test_unsigned_long()
732 // expected-note@-2 {{remove the call to 'cabsf' since unsigned values cannot be negative}} in test_unsigned_long()
733 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"" in test_unsigned_long()
735 …// expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned long' has no effect}} in test_unsigned_long()
736 // expected-note@-2 {{remove the call to 'cabs' since unsigned values cannot be negative}} in test_unsigned_long()
737 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:13}:"" in test_unsigned_long()
739 …// expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned long' has no effect}} in test_unsigned_long()
740 // expected-note@-2 {{remove the call to 'cabsl' since unsigned values cannot be negative}} in test_unsigned_long()
741 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"" in test_unsigned_long()
744 …// expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned long' has no effect}} in test_unsigned_long()
745 …// expected-note@-2 {{remove the call to '__builtin_abs' since unsigned values cannot be negative}} in test_unsigned_long()
746 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:22}:"" in test_unsigned_long()
748 …// expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned long' has no effect}} in test_unsigned_long()
749 …// expected-note@-2 {{remove the call to '__builtin_labs' since unsigned values cannot be negative… in test_unsigned_long()
750 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"" in test_unsigned_long()
752 …// expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned long' has no effect}} in test_unsigned_long()
753 …// expected-note@-2 {{remove the call to '__builtin_llabs' since unsigned values cannot be negativ… in test_unsigned_long()
754 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"" in test_unsigned_long()
757 …// expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned long' has no effect}} in test_unsigned_long()
758 …// expected-note@-2 {{remove the call to '__builtin_fabsf' since unsigned values cannot be negativ… in test_unsigned_long()
759 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"" in test_unsigned_long()
761 …// expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned long' has no effect}} in test_unsigned_long()
762 …// expected-note@-2 {{remove the call to '__builtin_fabs' since unsigned values cannot be negative… in test_unsigned_long()
763 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"" in test_unsigned_long()
765 …// expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned long' has no effect}} in test_unsigned_long()
766 …// expected-note@-2 {{remove the call to '__builtin_fabsl' since unsigned values cannot be negativ… in test_unsigned_long()
767 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"" in test_unsigned_long()
770 …// expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned long' has no effect}} in test_unsigned_long()
771 …// expected-note@-2 {{remove the call to '__builtin_cabsf' since unsigned values cannot be negativ… in test_unsigned_long()
772 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"" in test_unsigned_long()
774 …// expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned long' has no effect}} in test_unsigned_long()
775 …// expected-note@-2 {{remove the call to '__builtin_cabs' since unsigned values cannot be negative… in test_unsigned_long()
776 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:23}:"" in test_unsigned_long()
778 …// expected-warning@-1 {{taking the absolute value of unsigned type 'unsigned long' has no effect}} in test_unsigned_long()
779 …// expected-note@-2 {{remove the call to '__builtin_cabsl' since unsigned values cannot be negativ… in test_unsigned_long()
780 // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:24}:"" in test_unsigned_long()
785 // expected-warning@-1 {{absolute value of array type}} in test_array()
789 // expected-warning@-1 {{absolute value of pointer type}} in test_function_pointer()
793 // expected-warning@-1 {{absolute value of pointer type}} in test_void_pointer()
797 // expected-warning@-1 {{absolute value of function type}} in test_function()