Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / opt / fold1.C
blob98f1b519115debb24c034f7108b0bdf9163fa833
1 // PR middle-end/13696
2 // { dg-do compile }
3 // { dg-options "-O2" }
5 extern void x(unsigned long*);
7 enum e { red, blue, green };
9 struct s {
10   unsigned long l;
12 struct s map[1][256];
14 void
15 f(int i,e j) {
16      x(&(map[i][j].l));