From 1ef0876d5afa0746d06614bc9fa84d83ee6eff49 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 9 Aug 2007 17:01:07 +0000 Subject: [PATCH] minor cleanups git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@40963 91177308-0d34-0410-b5e6-96231b3b80d8 --- Parse/ParseDecl.cpp | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Parse/ParseDecl.cpp b/Parse/ParseDecl.cpp index a96211df7d..97f3661e3b 100644 --- a/Parse/ParseDecl.cpp +++ b/Parse/ParseDecl.cpp @@ -865,8 +865,6 @@ bool Parser::isTypeSpecifierQualifier() const { // typedef-name case tok::identifier: return Actions.isTypeName(*Tok.getIdentifierInfo(), CurScope) != 0; - - // TODO: Attributes. } } @@ -911,13 +909,13 @@ bool Parser::isDeclarationSpecifier() const { case tok::kw_volatile: case tok::kw_restrict: - // GNU typeof support. - case tok::kw_typeof: - // function-specifier case tok::kw_inline: - // attributes. + // GNU typeof support. + case tok::kw_typeof: + + // GNU attributes. case tok::kw___attribute: return true; -- 2.50.1