IVOPT performance tuning patch. The main problem is a variant of maximal weight
[official-gcc.git] / gcc / testsuite / gcc.dg / tls / opt-13.c
blob8eea76b68ab5f72cac09a8f7efedf37962e736ff
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3 /* { dg-require-effective-target tls } */
5 __thread struct
7 int a;
8 char b[32];
9 } thr;
11 int
12 main ()
14 __builtin_strcpy (thr.b, "abcd");
15 return 0;