File: warn-absolute-value-header.cpp

package info (click to toggle)
llvm-toolchain-14 1%3A14.0.6-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,496,180 kB
  • sloc: cpp: 5,593,972; ansic: 986,872; asm: 585,869; python: 184,223; objc: 72,530; lisp: 31,119; f90: 27,793; javascript: 9,780; pascal: 9,762; sh: 9,482; perl: 7,468; ml: 5,432; awk: 3,523; makefile: 2,538; xml: 953; cs: 573; fortran: 567
file content (53 lines) | stat: -rw-r--r-- 2,638 bytes parent folder | download | duplicates (37)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// RUN: %clang_cc1 -triple i686-pc-linux-gnu -fsyntax-only -verify %s -Wabsolute-value
// RUN: %clang_cc1 -triple i686-pc-linux-gnu -fsyntax-only %s -Wabsolute-value -fdiagnostics-parseable-fixits 2>&1 | FileCheck %s

extern "C" {
  int abs(int);
  float fabsf(float);
}

namespace std {
  int abs(int);
  float abs(float);
}

void test(long long ll, double d, int i, float f) {
  // Suggest including cmath
  (void)abs(d);
  // expected-warning@-1{{using integer absolute value function 'abs' when argument is of floating point type}}
  // expected-note@-2{{use function 'std::abs' instead}}
  // expected-note@-3{{include the header <cmath> or explicitly provide a declaration for 'std::abs'}}
  // CHECK: fix-it:"{{.*}}":{[[@LINE-4]]:9-[[@LINE-4]]:12}:"std::abs"

  (void)fabsf(d);
  // expected-warning@-1{{absolute value function 'fabsf' given an argument of type 'double' but has parameter of type 'float' which may cause truncation of value}}
  // expected-note@-2{{use function 'std::abs' instead}}
  // expected-note@-3{{include the header <cmath> or explicitly provide a declaration for 'std::abs'}}
  // CHECK: fix-it:"{{.*}}":{[[@LINE-4]]:9-[[@LINE-4]]:14}:"std::abs"

  // Suggest including cstdlib
  (void)abs(ll);
  // expected-warning@-1{{absolute value function 'abs' given an argument of type 'long long' but has parameter of type 'int' which may cause truncation of value}}
  // expected-note@-2{{use function 'std::abs' instead}}
  // expected-note@-3{{include the header <cstdlib> or explicitly provide a declaration for 'std::abs'}}
  // CHECK: fix-it:"{{.*}}":{[[@LINE-4]]:9-[[@LINE-4]]:12}:"std::abs"
  (void)fabsf(ll);
  // expected-warning@-1{{using floating point absolute value function 'fabsf' when argument is of integer type}}
  // expected-note@-2{{use function 'std::abs' instead}}
  // expected-note@-3{{include the header <cstdlib> or explicitly provide a declaration for 'std::abs'}}
  // CHECK: fix-it:"{{.*}}":{[[@LINE-4]]:9-[[@LINE-4]]:14}:"std::abs"

  // Proper function already called, no warnings.
  (void)abs(i);
  (void)fabsf(f);

  // Declarations found, suggest name change.
  (void)fabsf(i);
  // expected-warning@-1{{using floating point absolute value function 'fabsf' when argument is of integer type}}
  // expected-note@-2{{use function 'std::abs' instead}}
  // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:14}:"std::abs"
  (void)abs(f);
  // expected-warning@-1{{using integer absolute value function 'abs' when argument is of floating point type}}
  // expected-note@-2{{use function 'std::abs' instead}}
  // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:12}:"std::abs"
}