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); }