blob: 56c5ccccc7f5ada730c4283c53279165dc740690 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-rtl-expand-details" } */
float total = 0.2;
void foo(int n)
{
int i;
for (i = 0; i < n; i++)
total += i;
}
/* Verify that out-of-ssa coalescing did its job by verifying there are not
any partition copies inserted. */
/* { dg-final { scan-rtl-dump-not "partition copy" "expand"} } */
/* { dg-final { cleanup-rtl-dump "expand" } } */
|