* gcc.dg/attr-nest.c: New test.
authorRichard Sandiford <rsandifo@redhat.com>
Fri, 15 Feb 2002 16:11:10 +0000 (16:11 +0000)
committerRichard Sandiford <rsandifo@gcc.gnu.org>
Fri, 15 Feb 2002 16:11:10 +0000 (16:11 +0000)
From-SVN: r49792

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/attr-nest.c [new file with mode: 0644]

index ffce5549153118f90c11bdd0a6238bc790c60e90..227fad4d29bb8d4b74fcfa8ca15a802c60b727b0 100644 (file)
@@ -1,3 +1,7 @@
+2002-02-15  Richard Sandiford  <rsandifo@redhat.com>
+
+       * gcc.dg/attr-nest.c: New test.
+
 2002-02-15  Richard Sandiford  <rsandifo@redhat.com>
 
        * gcc.c-torture/execute/20020215-1.c: New test.
diff --git a/gcc/testsuite/gcc.dg/attr-nest.c b/gcc/testsuite/gcc.dg/attr-nest.c
new file mode 100644 (file)
index 0000000..16a79c6
--- /dev/null
@@ -0,0 +1,17 @@
+/* { dg-do compile } */
+
+#define ATTR_PRINTF __attribute__ ((format (printf, 1, 2)))
+#define ATTR_USED __attribute__ ((used))
+
+void bar (int, ...);
+
+/* gcc would segfault on the nested attribute.  */
+void foo (void)
+{
+  bar (0, (void (*ATTR_PRINTF) (const char *, ...)) 0);
+}
+
+/* For consistency, unnamed decls should give the same warnings as
+   named ones.  */
+void proto1 (int (*ATTR_USED) (void)); /* { dg-warning "attribute ignored" } */
+void proto2 (int (*ATTR_USED bar) (void)); /* { dg-warning "attribute ignored" } */