PR tree-optimization/85826 - ICE in gimple-ssa-warn-restruct on
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-fre-38.c
blobc10201affb264298298d262828c08be1bd3664c8
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" } } */