view gcc/testsuite/gcc.dg/Wvla-larger-than-1.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { 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);
  }
}