Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-fre-11.c
blob50bb5d9606645ae98c7699cd7ad35cd72412ae81
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-fre-details" } */
4 struct
6 int x;
7 int y;
8 } S[100];
10 int z[100];
12 int
13 foo (int y)
15 int x;
17 S[5].x = 4;
18 S[5].y = 0;
20 x = S[5].x;
22 return (x);
25 /* { dg-final { scan-tree-dump "Replaced S\\\[5\\\].x with 4" "fre" } } */
26 /* { dg-final { cleanup-tree-dump "fre" } } */