aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/chkp-stropt-14.c
blob: 01041b4b1cf2f8c52954ed38b37d5650aaeaca44 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { 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 "memset_nobnd_nochk" "chkpopt" } } */
/* { dg-final { cleanup-tree-dump "chkpopt" } } */

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

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