mirror of git://gcc.gnu.org/git/gcc.git
19 lines
340 B
C
19 lines
340 B
C
/* { 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"} } */
|