URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [gnu89-dupqual-1.c] - Rev 754
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-std=gnu89 -Werror" } */ typedef const int CI; const const int c1; /* { dg-bogus "duplicate" } */ const CI c2; /* { dg-bogus "duplicate" } */ const CI *c3; /* { dg-bogus "duplicate" } */ typedef volatile int VI; volatile volatile int v1; /* { dg-bogus "duplicate" } */ volatile VI v2; /* { dg-bogus "duplicate" } */ volatile VI *v3; /* { dg-bogus "duplicate" } */
Go to most recent revision | Compare with Previous | Blame | View Log