]> granicus.if.org Git - clang/commitdiff
Remove unnecessary checks.
authorChad Rosier <mcrosier@apple.com>
Fri, 21 Dec 2012 21:22:20 +0000 (21:22 +0000)
committerChad Rosier <mcrosier@apple.com>
Fri, 21 Dec 2012 21:22:20 +0000 (21:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@170924 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Parse/ParseDecl.cpp

index 23a6037bbb1ef9d81e3fbe4f4c3296e472892e98..1b0c5e9d04ac321e7562f94e99ce2c6a54813070 100644 (file)
@@ -4566,13 +4566,10 @@ void Parser::ParseParenDeclarator(Declarator &D) {
     // present even if the attribute list was empty.
     RequiresArg = true;
   }
+
   // Eat any Microsoft extensions.
-  if  (Tok.is(tok::kw___cdecl) || Tok.is(tok::kw___stdcall) ||
-       Tok.is(tok::kw___thiscall) || Tok.is(tok::kw___fastcall) ||
-       Tok.is(tok::kw___w64) || Tok.is(tok::kw___ptr64) ||
-       Tok.is(tok::kw___ptr32) || Tok.is(tok::kw___unaligned)) {
-    ParseMicrosoftTypeAttributes(attrs);
-  }
+  ParseMicrosoftTypeAttributes(attrs);
+
   // Eat any Borland extensions.
   if  (Tok.is(tok::kw___pascal))
     ParseBorlandTypeAttributes(attrs);