Merge -r 127928:132243 from trunk
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / forwprop-1.c
blobc1fa43543c14f8393bcac2c8d5f5031c94002b3f
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-forwprop1" } */
4 /* We should be able to optimize this to b->t[i] = 1 during
5 early optimizations. */
7 struct a
9 int t[10];
12 void f(struct a * b, __SIZE_TYPE__ i)
14 int *c = b->t;
15 c[i] = 1;
18 /* { dg-final { scan-tree-dump "t\\\[i.*\\\] = 1;" "forwprop1" } } */
19 /* { dg-final { cleanup-tree-dump "forwprop1" } } */