PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / coalesce-2.c
blob5be67c64df0e0c9806db71fe47f38c8c3ac70aa6
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-rtl-expand-details" } */
4 float total = 0.2;
5 void foo(int n)
7 int i;
8 for (i = 0; i < n; i++)
9 total += i;
12 /* Verify that out-of-ssa coalescing did its job by verifying there are not
13 any partition copies inserted. */
15 /* { dg-final { scan-rtl-dump-not "partition copy" "expand"} } */