1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/* { dg-do compile } */ /* { dg-options "-O2 -fdump-tree-ccp2" } */ void bar (int *); void foo (char *, int); void foo3 () { const int kIterations = 10; int results[kIterations]; int i; bar (results); for (i = 0; i < kIterations; i++) foo ("%d ", results[i]); } /* { dg-final { scan-tree-dump-times "alloca" 0 "ccp2"} } */ /* { dg-final { cleanup-tree-dump "ccp2" } } */