diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-03-27 21:15:17 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-03-27 21:15:17 +0000 |
commit | 27156c8c9f791741a5ee3a76d0aac94e3be55f54 (patch) | |
tree | b3be094635a9fe40880f87dfbbf7eb0439a999e7 /clang/lib/Analysis/GRExprEngine.cpp | |
parent | f740509e587133497c320c426ee6b85c0473bea1 (diff) | |
download | bcm5719-llvm-27156c8c9f791741a5ee3a76d0aac94e3be55f54.tar.gz bcm5719-llvm-27156c8c9f791741a5ee3a76d0aac94e3be55f54.zip |
Hooked up initial NSString interface checking to GRSimpleVals.
llvm-svn: 48895
Diffstat (limited to 'clang/lib/Analysis/GRExprEngine.cpp')
-rw-r--r-- | clang/lib/Analysis/GRExprEngine.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/lib/Analysis/GRExprEngine.cpp b/clang/lib/Analysis/GRExprEngine.cpp index b6f164a57f1..b70e21977be 100644 --- a/clang/lib/Analysis/GRExprEngine.cpp +++ b/clang/lib/Analysis/GRExprEngine.cpp @@ -411,14 +411,14 @@ void GRExprEngine::ProcessStmt(Stmt* S, StmtNodeBuilder& builder) { if (!MsgExprChecks.empty()) Builder->setObjCMsgExprAuditors( - (GRNodeAuditor<ValueState>**) &MsgExprChecks[0], - (GRNodeAuditor<ValueState>**) (&MsgExprChecks[0] + MsgExprChecks.size())); + (GRAuditor<ValueState>**) &MsgExprChecks[0], + (GRAuditor<ValueState>**) (&MsgExprChecks[0] + MsgExprChecks.size())); if (!CallChecks.empty()) Builder->setCallExprAuditors( - (GRNodeAuditor<ValueState>**) &CallChecks[0], - (GRNodeAuditor<ValueState>**) (&CallChecks[0] + CallChecks.size())); + (GRAuditor<ValueState>**) &CallChecks[0], + (GRAuditor<ValueState>**) (&CallChecks[0] + CallChecks.size())); // Create the cleaned state. |