Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / mpx / alloca-1-lbv.c
blob1c77c192c177809fdefd6f3a72a387e76ff933c6
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 *)__builtin_alloca (100 * sizeof(int));
21 rd (buf, -1);
23 return 0;