2008-05-30 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / loop-36.c
blob0af4d534a7fde460502a1b2dc2c5e76ee0b7bb72
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-dce2" } */
4 struct X { float array[4]; };
6 struct X a,b;
8 float foobar () {
9 float s = 0;
10 unsigned int d;
11 struct X c;
12 for (d=0; d<4; ++d)
13 c.array[d] = a.array[d] * b.array[d];
14 for (d=0; d<4; ++d)
15 s+=c.array[d];
16 return s;
19 /* The temporary structure should have been promoted to registers
20 by FRE after the loops have been unrolled by the early unrolling pass. */
21 /* { dg-final { scan-tree-dump-not "c\.array" "dce2" } } */
22 /* { dg-final { cleanup-tree-dump "dce2" } } */