OSDN Git Service

* parse.y (check_class_key): Allow KEY to be union/enum/struct/class
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 23 Apr 2002 20:59:05 +0000 (20:59 +0000)
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 23 Apr 2002 20:59:05 +0000 (20:59 +0000)
node with attributes.

* g++.dg/parse/attr1.C: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@52678 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/ChangeLog
gcc/cp/parse.y
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/parse/attr1.C [new file with mode: 0644]

index 25d1f4c..0274561 100644 (file)
@@ -1,3 +1,8 @@
+2002-04-23  Jakub Jelinek  <jakub@redhat.com>
+
+       * parse.y (check_class_key): Allow KEY to be union/enum/struct/class
+       node with attributes.
+
 2002-2-23  David O'Brien  <obrien@FreeBSD.org>
 
        * g++spec.c (MATH_LIBRARY_PROFILE, LIBSTDCXX_PROFILE): Add.
index ae1c2a4..491c83e 100644 (file)
@@ -214,6 +214,8 @@ check_class_key (key, aggr)
      tree key;
      tree aggr;
 {
+  if (TREE_CODE (key) == TREE_LIST)
+    key = TREE_VALUE (key);
   if ((key == union_type_node) != (TREE_CODE (aggr) == UNION_TYPE))
     pedwarn ("`%s' tag used in naming `%#T'",
             key == union_type_node ? "union"
index c1641dd..07de93d 100644 (file)
@@ -1,3 +1,7 @@
+2002-04-23  Jakub Jelinek  <jakub@redhat.com>
+
+       * g++.dg/parse/attr1.C: New test.
+
 2002-04-23  Roger Sayle  <roger@eyesopen.com>
 
        * gcc.c-torture/execute/string-opt-17.c: New test case.
diff --git a/gcc/testsuite/g++.dg/parse/attr1.C b/gcc/testsuite/g++.dg/parse/attr1.C
new file mode 100644 (file)
index 0000000..10d6f57
--- /dev/null
@@ -0,0 +1,50 @@
+// Test whether attributes are accepted both immediately after
+// struct/union keyword and after the closing brace.
+// { dg-do compile }
+
+struct foo
+{
+  union __attribute__ ((packed))
+  {
+    int a;
+    long b;
+  };
+  union __attribute__ ((packed)) __attribute__ ((unused))
+  {
+    int c;
+    long d;
+  };
+};
+
+union __attribute__ ((packed)) bar
+{
+  int c;
+  long d;
+};
+
+struct __attribute__ ((packed)) baz
+{
+  int e;
+  long f;
+};
+
+struct foo2
+{
+  union
+  {
+    int a;
+    long b;
+  } __attribute__ ((packed));
+};
+
+union bar2
+{
+  int c;
+  long d;
+} __attribute__ ((packed));
+
+struct baz2
+{
+  int e;
+  long f;
+} __attribute__ ((packed));