Merge from trunk @ 138209
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-fre-9.c
blob24c4ae37167e1ff710138415c5b2106091f7abec
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-fre-stats" } */
4 union loc {
5 unsigned reg;
6 signed offset;
7 };
8 void __frame_state_for2 (volatile char *state_in)
10 union loc fs;
12 *state_in = fs.reg;
13 *state_in = fs.offset;
16 void __frame_state_for1 (volatile char *state_in)
18 union loc fs;
19 for (;;)
21 *state_in = fs.offset;
22 *state_in = fs.reg;
26 /* { dg-final { scan-tree-dump-times "Eliminated: 1" 2 "fre" { xfail *-*-* } } } */
27 /* { dg-final { scan-tree-dump-times "Insertions: 1" 2 "fre" { xfail *-*-* } } } */
28 /* { dg-final { cleanup-tree-dump "fre" } } */