URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [anon-struct-4.c] - Rev 298
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test anonymous structures with type qualifiers. Bug 8420. */ /* Origin: Joseph Myers <jsm@polyomino.org.uk> */ /* { dg-do compile } */ /* { dg-options "-std=gnu89" } */ struct s { struct { int a; }; const struct { int b; }; struct { int c; } volatile; };
Go to most recent revision | Compare with Previous | Blame | View Log