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 "memcpy_nochk" "chkpopt" } } */
4 
5 #include "../../gcc.dg/strlenopt.h"
6 
test(int * buf1,int * buf2,size_t len)7 void test (int *buf1, int *buf2, size_t len)
8 {
9   memcpy (buf1, buf2, len);
10 }
11