summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/mpx/vla-trailing-1-nov.c
blob: f5c8f95cda54d69a52fef590eaaa79ed6d4123a3 (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
27
28
29
/* { dg-do run } */
/* { dg-options "-fcheck-pointer-bounds -mmpx -fchkp-flexible-struct-trailing-arrays" } */


#include "mpx-check.h"

struct S
{
  int a;
  int p[10];
};

int rd (int *p, int i)
{
  int res = p[i];
  printf ("%d\n", res);
  return res;
}

int mpx_test (int argc, const char **argv)
{
  struct S *s = (struct S *)alloca (sizeof(struct S) + sizeof (int)*100);
  rd (s->p, 0);
  rd (s->p, 99);
  s->p[0];
  s->p[99];
  
  return 0;
}