2008-09-22 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-fre-9.c
blob18595ed6fe5150ee96adda165f946dfb22ff31d6
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" } } */
27 /* { dg-final { scan-tree-dump-times "Insertions: 1" 2 "fre" } } */
28 /* { dg-final { cleanup-tree-dump "fre" } } */