diff options
Diffstat (limited to 'clang/lib/Edit/RewriteObjCFoundationAPI.cpp')
-rw-r--r-- | clang/lib/Edit/RewriteObjCFoundationAPI.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/clang/lib/Edit/RewriteObjCFoundationAPI.cpp b/clang/lib/Edit/RewriteObjCFoundationAPI.cpp index b53a70d8758..1528924d5f6 100644 --- a/clang/lib/Edit/RewriteObjCFoundationAPI.cpp +++ b/clang/lib/Edit/RewriteObjCFoundationAPI.cpp @@ -420,8 +420,8 @@ static bool rewriteToArrayLiteral(const ObjCMessageExpr *Msg, commit.replace(MsgRange, "@[]"); return true; } - SourceRange ArgRange(Msg->getArg(0)->getLocStart(), - Msg->getArg(Msg->getNumArgs()-2)->getLocEnd()); + SourceRange ArgRange(Msg->getArg(0)->getBeginLoc(), + Msg->getArg(Msg->getNumArgs() - 2)->getLocEnd()); commit.replaceWithInner(MsgRange, ArgRange); commit.insertWrap("@[", ArgRange, "]"); return true; @@ -550,8 +550,8 @@ static bool rewriteToDictionaryLiteral(const ObjCMessageExpr *Msg, // Range of arguments up until and including the last key. // The sentinel and first value are cut off, the value will move after the // key. - SourceRange ArgRange(Msg->getArg(1)->getLocStart(), - Msg->getArg(SentinelIdx-1)->getLocEnd()); + SourceRange ArgRange(Msg->getArg(1)->getBeginLoc(), + Msg->getArg(SentinelIdx - 1)->getLocEnd()); commit.insertWrap("@{", ArgRange, "}"); commit.replaceWithInner(MsgRange, ArgRange); return true; @@ -591,8 +591,7 @@ static bool rewriteToDictionaryLiteral(const ObjCMessageExpr *Msg, } // Range of arguments up until and including the last key. // The first value is cut off, the value will move after the key. - SourceRange ArgRange(Keys.front()->getLocStart(), - Keys.back()->getLocEnd()); + SourceRange ArgRange(Keys.front()->getBeginLoc(), Keys.back()->getLocEnd()); commit.insertWrap("@{", ArgRange, "}"); commit.replaceWithInner(MsgRange, ArgRange); return true; @@ -1131,7 +1130,7 @@ static bool doRewriteToUTF8StringBoxedExpressionHelper( if (const StringLiteral * StrE = dyn_cast<StringLiteral>(OrigArg->IgnoreParens())) { commit.replaceWithInner(Msg->getSourceRange(), StrE->getSourceRange()); - commit.insert(StrE->getLocStart(), "@"); + commit.insert(StrE->getBeginLoc(), "@"); return true; } |