summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr64088.c
blob: 0ea5fabcc2fc30833d9ab80ce30090f23e46594b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-do compile } */

extern int abs (int);
extern void attenuate_curve(int*);
int a;
void
setup_tone_curves_center_boost ()
{
  int b[0];
  a = 0;
  for (; a < 6; a++)
    {
      int c = abs (a);
      b[a] = c;
    }
  attenuate_curve (b);
}