summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/chkp-stropt-15.c
blob: a9a79c1e33033d4c48288687313b3756ce58da90 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile { target { ! x32 } } } */
/* { dg-options "-fcheck-pointer-bounds -mmpx -O2 -fdump-tree-chkpopt -fchkp-use-nochk-string-functions -fchkp-use-fast-string-functions" } */
/* { dg-final { scan-tree-dump "memmove_nobnd_nochk" "chkpopt" } } */

#include "../../gcc.dg/strlenopt.h"

void test (int *buf1, int *buf2, size_t len)
{
  memmove (buf1, buf2, len);
}