dwarf2.h (dwarf_calling_convention): Add enum for renesas sh abi.
[gcc.git] / gcc / testsuite / gcc.dg / anon-struct-4.c
1 /* Test anonymous structures with type qualifiers. Bug 8420. */
2 /* Origin: Joseph Myers <jsm@polyomino.org.uk> */
3 /* { dg-do compile } */
4 /* { dg-options "-std=gnu89" } */
5
6 struct s {
7 struct { int a; };
8 const struct { int b; };
9 struct { int c; } volatile;
10 };