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 | e5d5c204c761cc3b2a6374a15b035420f207c7af (patch) | |
tree | 3a17ff2a287a423e6685351aa3639b522fb000bf /lib/Analysis/GRExprEngine.cpp | |
parent | 0f9063c116b7c3b05d8042b5976463c2dae04861 (diff) |
Hooked up initial NSString interface checking to GRSimpleVals.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48895 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/GRExprEngine.cpp')
-rw-r--r-- | lib/Analysis/GRExprEngine.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Analysis/GRExprEngine.cpp b/lib/Analysis/GRExprEngine.cpp index b6f164a57f..b70e21977b 100644 --- a/lib/Analysis/GRExprEngine.cpp +++ b/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. |