* gcc.dg/attr-nest.c: New test.
From-SVN: r49792
This commit is contained in:
parent
ee96ce90ca
commit
aa42eef159
2 changed files with 21 additions and 0 deletions
|
@ -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.
|
||||
|
|
17
gcc/testsuite/gcc.dg/attr-nest.c
Normal file
17
gcc/testsuite/gcc.dg/attr-nest.c
Normal file
|
@ -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" } */
|
Loading…
Add table
Reference in a new issue