1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-ccp2" } */
5 void foo (char *, int);
10 const int kIterations
= 10;
11 int results
[kIterations
];
14 for (i
= 0; i
< kIterations
; i
++)
15 foo ("%d ", results
[i
]);
18 /* { dg-final { scan-tree-dump-times "alloca" 0 "ccp2"} } */