URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [20040726-2.c] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* From a failure after the global ccp pass. */ typedef struct { char n[129]; } A; const A C = { 0, 0 }; extern const A *const B; void bar(const char *); void foo () { bar (B->n); } const A *const B = &C;
Go to most recent revision | Compare with Previous | Blame | View Log