llvm-project/clang/test/Analysis/suppression-attr.cpp
Artem Dergachev 017675fff1
[attributes][analyzer] Generalize [[clang::suppress]] to declarations. (#80371)
The attribute is now allowed on an assortment of declarations, to
suppress warnings related to declarations themselves, or all warnings in
the lexical scope of the declaration.

I don't necessarily see a reason to have a list at all, but it does look
as if some of those more niche items aren't properly supported by the
compiler itself so let's maintain a short safe list for now.

The initial implementation raised a question whether the attribute
should apply to lexical declaration context vs. "actual" declaration
context. I'm using "lexical" here because it results in less warnings
suppressed, which is the conservative behavior: we can always expand it
later if we think this is wrong, without breaking any existing code. I
also think that this is the correct behavior that we will probably never
want to change, given that the user typically desires to keep the
suppressions as localized as possible.
2024-02-13 14:57:55 -08:00

69 lines
1.3 KiB
C++

// RUN: %clang_analyze_cc1 -analyzer-checker=core -verify %s
namespace [[clang::suppress]]
suppressed_namespace {
int foo() {
int *x = 0;
return *x;
}
int foo_forward();
}
int suppressed_namespace::foo_forward() {
int *x = 0;
return *x; // expected-warning{{Dereference of null pointer (loaded from variable 'x')}}
}
// Another instance of the same namespace.
namespace suppressed_namespace {
int bar() {
int *x = 0;
return *x; // expected-warning{{Dereference of null pointer (loaded from variable 'x')}}
}
}
void lambda() {
[[clang::suppress]] {
auto lam = []() {
int *x = 0;
return *x;
};
}
}
class [[clang::suppress]] SuppressedClass {
int foo() {
int *x = 0;
return *x;
}
int bar();
};
int SuppressedClass::bar() {
int *x = 0;
return *x; // expected-warning{{Dereference of null pointer (loaded from variable 'x')}}
}
class SuppressedMethodClass {
[[clang::suppress]] int foo() {
int *x = 0;
return *x;
}
[[clang::suppress]] int bar1();
int bar2();
};
int SuppressedMethodClass::bar1() {
int *x = 0;
return *x; // expected-warning{{Dereference of null pointer (loaded from variable 'x')}}
}
[[clang::suppress]]
int SuppressedMethodClass::bar2() {
int *x = 0;
return *x; // no-warning
}