URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [pr39983.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
typedef struct { int *p; } *A; extern const int a[1]; extern const int b[1]; void foo() { A x; A y; static const int * const c[] = { b }; x->p = (int*)c[0]; y->p = (int*)a; }
Go to most recent revision | Compare with Previous | Blame | View Log