summaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/ubsan/vla-4.c
blob: c9060177606e949f9e486a5bd6927e0f377fbeb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-do run } */
/* { dg-options "-fsanitize=vla-bound -fno-sanitize-recover=vla-bound" } */

int
main (void)
{
  int x = 1;
  /* Check that the size of an array is evaluated only once.  */
  int a[++x];
  if (x != 2)
    __builtin_abort ();
  return 0;
}