diff options
author | Ted Kremenek <kremenek@apple.com> | 2012-08-22 06:00:18 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2012-08-22 06:00:18 +0000 |
commit | 1afcb7442fb26b6369dd95b76acea25cbbdac651 (patch) | |
tree | 81c9abae4690ec1d140638d1ec3ce473c4d81fd9 /clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp | |
parent | 2cd56c4c6ecc6943257a4f7d007a1464d93feea8 (diff) | |
download | bcm5719-llvm-1afcb7442fb26b6369dd95b76acea25cbbdac651.tar.gz bcm5719-llvm-1afcb7442fb26b6369dd95b76acea25cbbdac651.zip |
Remove Store::bindDecl() and Store::bindDeclWithNoInit(), and
all forwarding methods.
This functionality is already covered by bindLoc().
llvm-svn: 162346
Diffstat (limited to 'clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp')
-rw-r--r-- | clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp b/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp index 2895e26da3e..87fdfc26504 100644 --- a/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp +++ b/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp @@ -487,7 +487,7 @@ void ExprEngine::VisitDeclStmt(const DeclStmt *DS, ExplodedNode *Pred, } } else { - B.generateNode(DS, N,state->bindDeclWithNoInit(state->getRegion(VD, LC))); + B.generateNode(DS, N, state); } } } |