aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/CheckObjCDealloc.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-08-10 01:53:14 +0000
committerChris Lattner <sabre@nondot.org>2008-08-10 01:53:14 +0000
commitd9f6910f4ef37c0e8eeee2a01287d9572c3176ef (patch)
tree11cdacedc41a441b204a6a6d0092e65ba35a1c29 /lib/Analysis/CheckObjCDealloc.cpp
parent55d71f9f4cf5f123db5d6dcfd20f3a8d5699c226 (diff)
rename PreDefinedExpr -> PredefinedExpr
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54605 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/CheckObjCDealloc.cpp')
-rw-r--r--lib/Analysis/CheckObjCDealloc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/CheckObjCDealloc.cpp b/lib/Analysis/CheckObjCDealloc.cpp
index 39d1e05b94..f6a3fd0112 100644
--- a/lib/Analysis/CheckObjCDealloc.cpp
+++ b/lib/Analysis/CheckObjCDealloc.cpp
@@ -29,8 +29,8 @@ static bool scan_dealloc(Stmt* S, Selector Dealloc) {
if (ObjCMessageExpr* ME = dyn_cast<ObjCMessageExpr>(S))
if (ME->getSelector() == Dealloc)
if (Expr* Receiver = ME->getReceiver()->IgnoreParenCasts())
- if (PreDefinedExpr* E = dyn_cast<PreDefinedExpr>(Receiver))
- if (E->getIdentType() == PreDefinedExpr::ObjCSuper)
+ if (PredefinedExpr* E = dyn_cast<PredefinedExpr>(Receiver))
+ if (E->getIdentType() == PredefinedExpr::ObjCSuper)
return true;
// Recurse to children.