URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [pr39983.c] - Rev 297
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; }