Fix regression in modeling assignments of an address of a variable to itself. Fixes...
authorTed Kremenek <kremenek@apple.com>
Fri, 22 Feb 2013 01:39:26 +0000 (01:39 +0000)
committerTed Kremenek <kremenek@apple.com>
Fri, 22 Feb 2013 01:39:26 +0000 (01:39 +0000)
llvm-svn: 175852

clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
clang/test/Analysis/stack-addr-ps.cpp

index b656bbd..b392c43 100644 (file)
@@ -471,9 +471,7 @@ void ExprEngine::VisitDeclStmt(const DeclStmt *DS, ExplodedNode *Pred,
 
       SVal InitVal = state->getSVal(InitEx, LC);
 
-      if (InitVal == state->getLValue(VD, LC) ||
-          (VD->getType()->isArrayType() &&
-           isa<CXXConstructExpr>(InitEx->IgnoreImplicit()))) {
+      if (isa<CXXConstructExpr>(InitEx->IgnoreImplicit())) {
         // We constructed the object directly in the variable.
         // No need to bind anything.
         B.generateNode(DS, UpdatedN, state);
index a27bef7..9dd63f8 100644 (file)
@@ -90,3 +90,9 @@ int* f5() {
   int& i = i; // expected-warning {{Assigned value is garbage or undefined}} expected-note {{binding reference variable 'i' here}} expected-warning{{reference 'i' is not yet bound to a value when used within its own initialization}}
   return &i; // expected-warning {{address of stack memory associated with local variable 'i' returned}}
 }
+
+void *radar13226577() {
+    void *p = &p;
+    return p; // expected-warning {{stack memory associated with local variable 'p' returned to caller}}
+}
+