re PR tree-optimization/33291 (a+=2; a+=2 not simplified to a+=4; with -O3 ...
[gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr15791-2.c
1 /* { dg-do link } */
2 /* { dg-options "" } */
3
4 void link_error ();
5 struct a {};
6 int main ()
7 {
8 struct a b[2];
9 if (&b[0] != &b[1])
10 link_error ();
11 return 0;
12 }
13