From a7a715698a3675a3db20d090dcbeff86445ee7e8 Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Sat, 20 Dec 2014 01:54:07 +0000 Subject: [PATCH] Removing an outdated FIXME; try block attributes are parsed with the rest of the statement attributes (as per the standard), and function-try-blocks may not have attributes. NFC. llvm-svn: 224662 --- clang/lib/Parse/ParseStmt.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/clang/lib/Parse/ParseStmt.cpp b/clang/lib/Parse/ParseStmt.cpp index 752baf663bb2..2ecfcf80ef31 100644 --- a/clang/lib/Parse/ParseStmt.cpp +++ b/clang/lib/Parse/ParseStmt.cpp @@ -1959,7 +1959,6 @@ StmtResult Parser::ParseCXXTryBlock() { StmtResult Parser::ParseCXXTryBlockCommon(SourceLocation TryLoc, bool FnTry) { if (Tok.isNot(tok::l_brace)) return StmtError(Diag(Tok, diag::err_expected) << tok::l_brace); - // FIXME: Possible draft standard bug: attribute-specifier should be allowed? StmtResult TryBlock(ParseCompoundStatement(/*isStmtExpr=*/false, Scope::DeclScope | Scope::TryScope |