diff options
Diffstat (limited to 'clang/test/SemaCXX/warn-absolute-value-header.cpp')
| -rw-r--r-- | clang/test/SemaCXX/warn-absolute-value-header.cpp | 64 |
1 files changed, 40 insertions, 24 deletions
diff --git a/clang/test/SemaCXX/warn-absolute-value-header.cpp b/clang/test/SemaCXX/warn-absolute-value-header.cpp index 01aaabcc002..96e6a315402 100644 --- a/clang/test/SemaCXX/warn-absolute-value-header.cpp +++ b/clang/test/SemaCXX/warn-absolute-value-header.cpp @@ -1,37 +1,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); +extern "C" { + int abs(int); + float fabsf(float); +} -// Wrong signature -int fabsf(int); +namespace std { + int abs(int); + float abs(float); +} -void test_int(int i, unsigned u, long long ll, float f, double d) { - (void)abs(i); +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{{please include the header <cmath> or explicitly provide a declaration for 'std::abs'}} + // CHECK: fix-it:"{{.*}}":{[[@LINE-4]]:9-[[@LINE-4]]:12}:"std::abs" - // Remove abs call - (void)abs(u); - // expected-warning@-1{{taking the absolute value of unsigned type 'unsigned int' has no effect}} - // expected-note@-2{{remove the call to 'abs' since unsigned values cannot be negative}} - // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:12}:"" + (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{{please include the header <cmath> or explicitly provide a declaration for 'std::abs'}} + // CHECK: fix-it:"{{.*}}":{[[@LINE-4]]:9-[[@LINE-4]]:14}:"std::abs" - int llabs; - (void)llabs; - // Conflict in names, suggest qualified name + // 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 '::llabs' instead}} - // expected-note@-3{{please include the header <stdlib.h> or explicitly provide a declaration for 'llabs'}} - // CHECK: fix-it:"{{.*}}":{[[@LINE-4]]:9-[[@LINE-4]]:12}:"::llabs" + // expected-note@-2{{use function 'std::abs' instead}} + // expected-note@-3{{please 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{{please include the header <cstdlib> or explicitly provide a declaration for 'std::abs'}} + // CHECK: fix-it:"{{.*}}":{[[@LINE-4]]:9-[[@LINE-4]]:14}:"std::abs" - // Conflict in names, no notes - (void)abs(f); - // expected-warning@-1{{using integer absolute value function 'abs' when argument is of floating point type}} + // Proper function already called, no warnings. + (void)abs(i); + (void)fabsf(f); - // Suggest header. - (void)abs(d); + // 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 'fabs' instead}} - // expected-note@-3{{please include the header <math.h> or explicitly provide a declaration for 'fabs'}} - // CHECK: fix-it:"{{.*}}":{[[@LINE-4]]:9-[[@LINE-4]]:12}:"fabs" + // expected-note@-2{{use function 'std::abs' instead}} + // CHECK: fix-it:"{{.*}}":{[[@LINE-3]]:9-[[@LINE-3]]:12}:"std::abs" } |

