diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-01-07 19:49:32 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-01-07 19:49:32 +0000 |
commit | a526c5c67e5a0473c340903ee542ce570119665f (patch) | |
tree | bfc9bce5bce917fc2294f717d284c601e3a05559 /Sema/SemaChecking.cpp | |
parent | 8cc71e8d00896e758cf56ea86cfc1f62ade16478 (diff) |
Substituted all instances of the string "Objc" for "ObjC". This fixes
some naming inconsistencies in the names of classes pertaining to Objective-C
support in clang.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45715 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Sema/SemaChecking.cpp')
-rw-r--r-- | Sema/SemaChecking.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Sema/SemaChecking.cpp b/Sema/SemaChecking.cpp index bd9ef0cbf7..61c67f02fe 100644 --- a/Sema/SemaChecking.cpp +++ b/Sema/SemaChecking.cpp @@ -560,7 +560,7 @@ Sema::CheckReturnStackAddr(Expr *RetValExp, QualType lhsType, static DeclRefExpr* EvalAddr(Expr *E) { // We should only be called for evaluating pointer expressions. assert((E->getType()->isPointerType() || - E->getType()->isObjcQualifiedIdType()) && + E->getType()->isObjCQualifiedIdType()) && "EvalAddr only works on pointers"); // Our "symbolic interpreter" is just a dispatch off the currently @@ -621,7 +621,7 @@ static DeclRefExpr* EvalAddr(Expr *E) { Expr* SubExpr = IE->getSubExpr(); if (SubExpr->getType()->isPointerType() || - SubExpr->getType()->isObjcQualifiedIdType()) + SubExpr->getType()->isObjCQualifiedIdType()) return EvalAddr(SubExpr); else return EvalVal(SubExpr); |