summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/SemaExpr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang/lib/Sema/SemaExpr.cpp')
-rw-r--r--clang/lib/Sema/SemaExpr.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/clang/lib/Sema/SemaExpr.cpp b/clang/lib/Sema/SemaExpr.cpp
index 7c1c62c0a0d..b7c2308541d 100644
--- a/clang/lib/Sema/SemaExpr.cpp
+++ b/clang/lib/Sema/SemaExpr.cpp
@@ -6290,10 +6290,8 @@ void Sema::DiagnoseAssignmentAsCondition(Expr *E) {
return;
}
- // We want to insert before the start of the expression...
SourceLocation Open = E->getSourceRange().getBegin();
- // ...and one character after the end.
- SourceLocation Close = E->getSourceRange().getEnd().getFileLocWithOffset(1);
+ SourceLocation Close = PP.getLocForEndOfToken(E->getSourceRange().getEnd());
Diag(Loc, diag::warn_condition_is_assignment)
<< E->getSourceRange()
OpenPOWER on IntegriCloud