summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr100225.c
blob: f0efd29fa869b43c3b710933b83c959cde5d8586 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* PR rtl-optimization/100225 */
/* { dg-do compile } */
/* { dg-options "-O1 -fmodulo-sched" } */
/* { dg-require-effective-target alloca } */

void
vorbis_synthesis_lapout (void);

void
ov_info (int **lappcm, int ov_info_i)
{
  while (ov_info_i < 1)
    lappcm[ov_info_i++] = __builtin_alloca (1);

  vorbis_synthesis_lapout ();
}