Merge -r 127928:132243 from trunk
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / forwprop-3.c
blob0d26b8d9cf3ac71df6beff445b71f76124f42474
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-forwprop1" } */
4 struct bar {
5 int a[2];
6 };
8 int foo(struct bar *x)
10 int *p = &x->a[0];
11 int *q = &x->a[1];
12 if (p < q)
13 return 1;
14 return 0;
17 /* { dg-final { scan-tree-dump "Replaced .p_. < q_.. with .1." "forwprop1" } } */
18 /* { dg-final { cleanup-tree-dump "forwprop1" } } */