minor cleanups


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@40963 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Parse/ParseDecl.cpp b/Parse/ParseDecl.cpp
index a96211d..97f3661 100644
--- a/Parse/ParseDecl.cpp
+++ b/Parse/ParseDecl.cpp
@@ -865,8 +865,6 @@
     // typedef-name
   case tok::identifier:
     return Actions.isTypeName(*Tok.getIdentifierInfo(), CurScope) != 0;
-    
-    // TODO: Attributes.
   }
 }
 
@@ -911,13 +909,13 @@
   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;