1 /* { dg-do run } */
2 /* { dg-options "-fno-check-pointer-bounds" } */
3 
4 
5 #include "mpx-check.h"
6 
7 int buf[100];
8 
mpx_test(int argc,const char ** argv)9 int mpx_test (int argc, const char **argv)
10 {
11   __bnd_chk_ptr_lbounds (buf - 1);
12   return 0;
13 }
14