1 /* { dg-do compile { target { ! x32 } } } */
2 /* { dg-options "-fcheck-pointer-bounds -mmpx -O2 -fdump-tree-chkpopt -fchkp-use-fast-string-functions" } */
3 /* { dg-final { scan-tree-dump-not "memset_nobnd" "chkpopt" } } */
4 
5 #include "../../gcc.dg/strlenopt.h"
6 
test(void * buf1,int c,size_t len)7 void test (void *buf1, int c, size_t len)
8 {
9   memset (buf1, c, len);
10 }
11