diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-09-23 05:14:51 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-09-23 05:14:51 +0000 |
commit | c69c43845aa3ede95af837b8be52868eca55d64d (patch) | |
tree | 3609a91081b4fcae0939dbf851c4c1fb3a4b8b96 /include/clang/Checker | |
parent | 7bb1d23213165f9260f67440ee83b8d7dbc591f7 (diff) |
Refactor GRExprEngine::VisitCall() to use EvalArguments(), just like VisitCXXMemberCallExpr(). Ideally we should unify these code paths as much as possible, since they only differ by a few details.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@114628 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Checker')
-rw-r--r-- | include/clang/Checker/PathSensitive/GRExprEngine.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/clang/Checker/PathSensitive/GRExprEngine.h b/include/clang/Checker/PathSensitive/GRExprEngine.h index 39c3ea50a5..1d40e9775d 100644 --- a/include/clang/Checker/PathSensitive/GRExprEngine.h +++ b/include/clang/Checker/PathSensitive/GRExprEngine.h @@ -116,15 +116,6 @@ class GRExprEngine : public GRSubEngine { llvm::OwningPtr<GRTransferFuncs> TF; - class CallExprWLItem { - public: - CallExpr::const_arg_iterator I; - ExplodedNode *N; - - CallExprWLItem(const CallExpr::const_arg_iterator &i, ExplodedNode *n) - : I(i), N(n) {} - }; - public: GRExprEngine(AnalysisManager &mgr, GRTransferFuncs *tf); |