summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr45860.c
blob: 4a48bc5590e5cc72cf58c1731001527e0818a73b (plain)
1
2
3
4
5
6
7
8
9
10
11
/* { dg-do compile } */

void
foo (char *str, int i)
{
  static const char text[] = "";
  str[i] = 0;
  if (i & 1)
    __builtin_strcpy (str + i, text);
}