PR testsuite/52641
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-fre-38.c
blob2b342db524734d60f68e091627de7826e0064962
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-fre1" } */
4 struct S { int i; int j; };
6 struct U
8 struct S a[10];
9 } u;
11 int foo (int n, int i, int j)
13 u.a[n].i = i;
14 u.a[n].j = j;
15 return u.a[n].i;
18 /* We should remove the redundant load. */
20 /* { dg-final { scan-tree-dump-not "= u.a\\\[n_2\\(D\\)\\\].i" "fre1" } } */
21 /* { dg-final { cleanup-tree-dump "fre1" } } */