blob: ea54ede3c5784faa78615f15b6571e13a9dffd97 (
plain)
1
2
3
4
5
6
7
8
9
|
/* { dg-do compile } */
/* { dg-options "-fcheck-pointer-bounds -mmpx -fdump-tree-chkp" } */
/* { dg-final { scan-tree-dump-not "bnd_set_ptr_bounds" "chkp" } } */
void *
chkp_test (void *p)
{
return __builtin___bnd_set_ptr_bounds (p, 10);
}
|