PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / forwprop-3.c
blob4aa68c64950b214d4c78751d791980301f3ea378
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -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" } } */