blob: afde3c92b9fdbf0645709025c4ae66d7f7a7c07b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* { dg-do compile { target { ! x32 } } } */
/* { dg-require-effective-target mempcpy } */
/* { dg-options "-fcheck-pointer-bounds -mmpx -O2 -fdump-tree-chkpopt -fchkp-use-fast-string-functions" } */
/* { dg-final { scan-tree-dump "mempcpy_nobnd" "chkpopt" } } */
#define _GNU_SOURCE
#include "string.h"
void test (int *buf1, int *buf2, size_t len)
{
mempcpy (buf1, buf2, len);
}
|