/* { dg-do run } */ /* { dg-shouldfail "bounds violation" } */ /* { dg-options "-fcheck-pointer-bounds -mmpx" } */ #define SHOULDFAIL #include "mpx-check.h" int buf[100]; int mpx_test (int argc, const char **argv) { int *p = __bnd_null_ptr_bounds (buf + 10); p[0] = argc; return 0; }