aboutsummaryrefslogtreecommitdiff
path: root/Sema/SemaChecking.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Sema/SemaChecking.cpp')
-rw-r--r--Sema/SemaChecking.cpp4
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);