This reverts commit d50d9946d1d7e5f20881f0bc71fbd025040b1c96. Broke check-clang, see comments on https://reviews.llvm.org/D126067 Also revert dependent change "[analyzer] Deprecate the unused 'analyzer-opt-analyze-nested-blocks' cc1 flag" This reverts commit 07b4a6d0461fe64e10d30029ed3d598e49ca3810. Also revert "[analyzer] Fix buildbots after introducing a new frontend warning" This reverts commit 90374df15ddc58d823ca42326a76f58e748f20eb. (See https://reviews.llvm.org/rG90374df15ddc58d823ca42326a76f58e748f20eb)
34 lines
763 B
C++
34 lines
763 B
C++
// RUN: %clang_analyze_cc1 -analyzer-checker=core -analyzer-store region -verify %s
|
|
// expected-no-diagnostics
|
|
|
|
// Intra-procedural C++ tests.
|
|
|
|
// Test relaxing function call arguments invalidation to be aware of const
|
|
// arguments. radar://10595327
|
|
struct InvalidateArgs {
|
|
void ttt(const int &nptr);
|
|
virtual void vttt(const int *nptr);
|
|
};
|
|
struct ChildOfInvalidateArgs: public InvalidateArgs {
|
|
virtual void vttt(const int *nptr);
|
|
};
|
|
void declarationFun(int x) {
|
|
InvalidateArgs t;
|
|
x = 3;
|
|
int y = x + 1;
|
|
int *p = 0;
|
|
t.ttt(y);
|
|
if (x == y)
|
|
y = *p; // no-warning
|
|
}
|
|
void virtualFun(int x) {
|
|
ChildOfInvalidateArgs t;
|
|
InvalidateArgs *pt = &t;
|
|
x = 3;
|
|
int y = x + 1;
|
|
int *p = 0;
|
|
pt->vttt(&y);
|
|
if (x == y)
|
|
y = *p; // no-warning
|
|
}
|