aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2010-11-22 13:48:02 +0000
committerNico Weber <nicolasweber@gmx.de>2010-11-22 13:48:02 +0000
commitece562ed2783dff9d3f4ef8ee1b9e34859c3aaf3 (patch)
tree707231ff25d1d2f981a569cff2868da537950260
parent8a0f486e364edfd034f41ad3c8670335b5ecbde5 (diff)
downloadllvm-ece562ed2783dff9d3f4ef8ee1b9e34859c3aaf3.zip
llvm-ece562ed2783dff9d3f4ef8ee1b9e34859c3aaf3.tar.gz
llvm-ece562ed2783dff9d3f4ef8ee1b9e34859c3aaf3.tar.bz2
Remove the other FIXME I added. This is covered by the Index test and not testable via -ast-dump.
llvm-svn: 119971
-rw-r--r--clang/lib/Parse/ParseDecl.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/clang/lib/Parse/ParseDecl.cpp b/clang/lib/Parse/ParseDecl.cpp
index 79fc198..db02c78 100644
--- a/clang/lib/Parse/ParseDecl.cpp
+++ b/clang/lib/Parse/ParseDecl.cpp
@@ -1083,8 +1083,6 @@ void Parser::ParseDeclarationSpecifiers(DeclSpec &DS,
case tok::annot_typename: {
if (Tok.getAnnotationValue()) {
ParsedType T = getTypeAnnotation(Tok);
- // FIXME: This should probably pass getAnnotationEndLoc() instead of
- // Loc, but that breaks test/Index/recursive-cxx-member-calls.cpp.
isInvalid = DS.SetTypeSpecType(DeclSpec::TST_typename, Loc, PrevSpec,
DiagID, T);
} else