Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / mpx / malloc-1-ubv.c
blob6f48ec269237e98deec35403ed9f149d8cae2010
1 /* { dg-do run } */
2 /* { dg-shouldfail "bounds violation" } */
3 /* { dg-options "-fcheck-pointer-bounds -mmpx" } */
6 #define SHOULDFAIL
8 #include "mpx-check.h"
10 int rd (int *p, int i)
12 int res = p[i];
13 printf ("%d\n", res);
14 return res;
17 int mpx_test (int argc, const char **argv)
19 int *buf = (int *)malloc (100 * sizeof(int));
21 rd (buf, 100);
23 free (buf);
25 return 0;