summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/mpx/realloc-2-ubv.c
blob: 36eb90c1abf2755cc8cb6cc22e04e40b7f53f5f2 (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
/* { dg-do run } */
/* { dg-shouldfail "bounds violation" } */
/* { dg-options "-fcheck-pointer-bounds -mmpx" } */


#define SHOULDFAIL

#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 *)malloc (100 * sizeof(int));
  buf = (int *)realloc (buf, 10 * sizeof(int));

  rd (buf, 10);

  free (buf);

  return 0;
}