Fix false negative in -Wuninitialized involving a () wrapping an lvalue-to-rvalue conversion in a DeclStmt.

llvm-svn: 135525
This commit is contained in:
Ted Kremenek 2011-07-19 21:41:51 +00:00
parent c78e03c39a
commit 65b3e0649c
2 changed files with 13 additions and 8 deletions

View File

@ -464,14 +464,19 @@ void TransferFunctions::VisitDeclStmt(DeclStmt *ds) {
if (init == lastLoad) {
DeclRefExpr *DR =
cast<DeclRefExpr>(lastLoad->getSubExpr()->IgnoreParens());
vals[vd] = (DR->getDecl() == vd) ? Uninitialized : Initialized;
lastLoad = 0;
if (lastDR == DR)
if (DR->getDecl() == vd) {
// int x = x;
// Propagate uninitialized value, but don't immediately report
// a problem.
vals[vd] = Uninitialized;
lastLoad = 0;
lastDR = 0;
return;
}
}
else {
vals[vd] = Initialized;
}
// All other cases: treat the new variable as initialized.
vals[vd] = Initialized;
}
}
}

View File

@ -354,8 +354,8 @@ int test52(int a, int b) {
}
void test53() {
int x;
int y = (x);
int x; // expected-note {{variable 'x' is declared here}} expected-note {{add initialization to silence this warning}}
int y = (x); // expected-warning {{variable 'x' is uninitialized when used here}}
}
// This CFG caused the uninitialized values warning to inf-loop.