aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/vla-1.c
blob: 902166cb18c964ad9d52e95aa68e2447b3deb668 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* { dg-do compile } */
/* { dg-options "-g -O3 -fdump-tree-optimized -fvar-tracking-assignments -fno-selective-scheduling -fno-selective-scheduling2" } */

int __attribute__((noinline))
f1 (int i)
{
  char a[i + 1];
  char b[i + 2];
  b[1] = 3;
  a[0] = 5;
  return a[0] + b[1];
}

int
main ()
{
  volatile int j;
  int x = 5;
  j = f1 (x);
  return 0;
}

/* One debug source bind is generated for the parameter, and one to describe the
   sizes of a and b.  */
/* { dg-final { scan-tree-dump-times " s=> i" 2 "optimized" } } */