summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/mpx/alloca-1-nov.c
blob: 835015fc43203f80f32d4646526ab7dc971a3f99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* { dg-do run } */
/* { dg-options "-fcheck-pointer-bounds -mmpx" } */


#include "mpx-check.h"

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

int mpx_test (int argc, const char **argv)
{
  int *buf = (int *)__builtin_alloca (100 * sizeof(int));

  rd (buf, 0);
  rd (buf, 99);

  return 0;
}