URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [struct-semi-4.c] - Rev 750
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test for missing semicolons in structures: anonymous structures and similar cases. */ /* { dg-do compile } */ /* { dg-options "" } */ struct s { struct { int a; } }; /* { dg-warning "no semicolon" } */ int *f (struct s *p) { return &p->a; }
Go to most recent revision | Compare with Previous | Blame | View Log