Fix a regression in a previous patch that broke implicit
authorChris Lattner <sabre@nondot.org>
Tue, 14 Apr 2009 21:16:09 +0000 (21:16 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 14 Apr 2009 21:16:09 +0000 (21:16 +0000)
int in a bitfield.  Shantonu found this in a gcc testsuite file.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69074 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Parse/ParseDecl.cpp
test/Sema/implicit-int.c

index 1fe0d93d1c0272b0ccccb7fe0738314cec62fc3f..a416838250988bdd93cc278303f9a29ce9c0bfc6 100644 (file)
@@ -440,7 +440,8 @@ void Parser::ParseSpecifierQualifierList(DeclSpec &DS) {
   
   // Validate declspec for type-name.
   unsigned Specs = DS.getParsedSpecifiers();
-  if (Specs == DeclSpec::PQ_None && !DS.getNumProtocolQualifiers())
+  if (Specs == DeclSpec::PQ_None && !DS.getNumProtocolQualifiers() &&
+      !DS.getAttributes())
     Diag(Tok, diag::err_typename_requires_specqual);
   
   // Issue diagnostic and remove storage class if present.
@@ -475,6 +476,7 @@ void Parser::ParseSpecifierQualifierList(DeclSpec &DS) {
 ///      int x   =             17;         // init-declarator-list
 ///      int x   ,             y;          // init-declarator-list
 ///      int x   __asm__       ("foo");    // init-declarator-list
+///      int x   :             4;          // struct-declarator
 ///      int x   {             5};         // C++'0x unified initializers
 ///
 /// This is not, because 'x' does not immediately follow the declspec (though
@@ -484,7 +486,7 @@ void Parser::ParseSpecifierQualifierList(DeclSpec &DS) {
 static bool isValidAfterIdentifierInDeclarator(const Token &T) {
   return T.is(tok::l_square) || T.is(tok::l_paren) || T.is(tok::r_paren) ||
          T.is(tok::semi) || T.is(tok::comma) || T.is(tok::equal) ||
-         T.is(tok::kw_asm) || T.is(tok::l_brace);
+         T.is(tok::kw_asm) || T.is(tok::l_brace) || T.is(tok::colon);
 }
 
 /// ParseDeclarationSpecifiers
index 71a5724a1ffa8565e7419fa3cee7a724c6ee6abf..90fe607e120e2384ef7a3fdc9e67aa026888db1b 100644 (file)
@@ -22,3 +22,11 @@ h19_insline(n)  // expected-warning {{parameter 'n' was not declared, defaulting
        ILPAD();  // expected-warning {{type specifier missing, defaults to 'int'}}
 }
 
+struct foo {
+ __extension__ __attribute__((packed)) // expected-warning {{type specifier missing, defaults to 'int'}}
+   x : 4;
+};
+
+
+
+