summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr81703.c
blob: 02edf267437ff14aaf36c810b3b14057e3bbb40b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-strlen" } */

unsigned g (void)
{
  char d[8];
  const char s[] = "0123";
  __builtin_memcpy (d, s, sizeof s);
  return __builtin_strlen (d);
}

/* { dg-final { scan-tree-dump-not "__builtin_strlen" "strlen1" } } */