OSDN Git Service

2009-05-19 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / pr38343.c
1 /* PR middle-end/38343 */
2
3 static struct A
4 {
5   char f[6];
6 } a[] = { {"01000"} };
7
8 void
9 foo (void)
10 {
11   __builtin_stpcpy (a[0].f, "S0022");
12 }