summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2013-06-17 22:35:10 +0000
committerEli Friedman <eli.friedman@gmail.com>2013-06-17 22:35:10 +0000
commit6e40c9544a0215c3e632e1fb79d5161adc464101 (patch)
tree5fe595695bbe2e9679c35fb8beaa62f4746a486e
parent93cc515d3b99dca18d287d200e19355a2e9c02b2 (diff)
downloadclang-6e40c9544a0215c3e632e1fb79d5161adc464101.tar.gz
clang-6e40c9544a0215c3e632e1fb79d5161adc464101.tar.bz2
clang-6e40c9544a0215c3e632e1fb79d5161adc464101.tar.xz
Fix source range of CXXNewExpr with parentheses around the type. PR15569.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@184139 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/AST/ExprCXX.cpp5
-rw-r--r--unittests/AST/SourceLocationTest.cpp6
2 files changed, 10 insertions, 1 deletions
diff --git a/lib/AST/ExprCXX.cpp b/lib/AST/ExprCXX.cpp
index 59e780ae0a..55bd1990f6 100644
--- a/lib/AST/ExprCXX.cpp
+++ b/lib/AST/ExprCXX.cpp
@@ -134,7 +134,10 @@ CXXNewExpr::CXXNewExpr(ASTContext &C, bool globalNew, FunctionDecl *operatorNew,
this->Range.setEnd(DirectInitRange.getEnd()); break;
case ListInit:
this->Range.setEnd(getInitializer()->getSourceRange().getEnd()); break;
- default: break;
+ default:
+ if (TypeIdParens.isValid())
+ this->Range.setEnd(TypeIdParens.getEnd());
+ break;
}
}
diff --git a/unittests/AST/SourceLocationTest.cpp b/unittests/AST/SourceLocationTest.cpp
index 990e6dfc85..669fcd48a4 100644
--- a/unittests/AST/SourceLocationTest.cpp
+++ b/unittests/AST/SourceLocationTest.cpp
@@ -174,5 +174,11 @@ TEST(TemplateSpecializationTypeLoc, AngleBracketLocations) {
loc(templateSpecializationType())));
}
+TEST(CXXNewExpr, TypeParenRange) {
+ RangeVerifier<CXXNewExpr> Verifier;
+ Verifier.expectRange(1, 10, 1, 18);
+ EXPECT_TRUE(Verifier.match("int* a = new (int);", newExpr()));
+}
+
} // end namespace ast_matchers
} // end namespace clang