summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/Wvla-larger-than-1.c
blob: f0617f953039e8e63405bf0f65c8fbd65b5f45bc (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
/* { dg-do compile } */
/* { dg-require-effective-target alloca } */
/* { dg-options "-Wvla-larger-than=100 -O2" } */

typedef __SIZE_TYPE__ size_t;

extern void useit (char *);

int num;

void test_vlas (size_t num)
{
  char str2[num];		/* { dg-warning "unbounded use" } */
  useit(str2);

  num = 98;
  for (int i=0; i < 1234; ++i) {
    char str[num];	        // OK, VLA in a loop, but it is a
				// known size *AND* the compiler takes
				// care of cleaning up between
				// iterations with
				// __builtin_stack_restore.
    useit(str);
  }
}