diff options
-rw-r--r-- | lib/Sema/SemaExpr.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Sema/SemaExpr.cpp b/lib/Sema/SemaExpr.cpp index 744b020986..e5ee363825 100644 --- a/lib/Sema/SemaExpr.cpp +++ b/lib/Sema/SemaExpr.cpp @@ -2023,6 +2023,8 @@ Sema::ActOnMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc, // must have pointer type, and the accessed type is the pointee. if (OpKind == tok::arrow) { if (BaseType->isDependentType()) + // FIXME: This should not return a MemberExpr AST node, but a more + // specialized one. return Owned(new (Context) MemberExpr(BaseExpr, true, 0, MemberLoc, Context.DependentTy)); else if (const PointerType *PT = BaseType->getAsPointerType()) @@ -2048,6 +2050,8 @@ Sema::ActOnMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc, if (!PT || (getLangOptions().ObjC1 && !PT->getPointeeType()->isRecordType())) + // FIXME: This should not return a MemberExpr AST node, but a more + // specialized one. return Owned(new (Context) MemberExpr(BaseExpr, false, 0, MemberLoc, Context.DependentTy)); } |