summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/chkp-stropt-10.c
blob: 26e9f13a190e21c28d9db3062533b794335290d6 (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-fast-string-functions" } */
/* { dg-final { scan-tree-dump-not "memset_nobnd" "chkpopt" } } */

#include "string.h"

void test (void *buf1, int c, size_t len)
{
  memset (buf1, c, len);
}