blob: aadfb288f3fa248fe1c2972da826c85930044451 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2" } */
/* { dg-require-effective-target tls_native } */
__thread struct
{
int a;
char b[32];
} thr;
int
main ()
{
__builtin_strcpy (thr.b, "abcd");
return 0;
}