URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [g++.dg/] [opt/] [fold1.C] - Rev 12
Compare with Previous | Blame | View Log
// PR middle-end/13696
// { dg-do compile }
// { dg-options "-O2" }
extern void x(unsigned long*);
enum e { red, blue, green };
struct s {
unsigned long l;
};
struct s map[1][256];
void
f(int i,e j) {
x(&(map[i][j].l));
}