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