1 /* { dg-do run } */
2 /* { dg-shouldfail "bounds violation" } */
3 /* { dg-options "-fcheck-pointer-bounds -mmpx" } */
4 
5 
6 #define SHOULDFAIL
7 
8 #include "mpx-check.h"
9 
10 int buf[100];
11 
mpx_test(int argc,const char ** argv)12 int mpx_test (int argc, const char **argv)
13 {
14   __bnd_chk_ptr_ubounds (buf + 100);
15   return 0;
16 }
17