PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-fre-12.c
blobd1d62f8acf28510ea46ec42387a7c67d6c5af779
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-fre1-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" "fre1" } } */