IVOPT performance tuning patch. The main problem is a variant of maximal weight
[official-gcc.git] / gcc / testsuite / gcc.dg / tls / pr24428.c
blob6439698775a848a518e569dc088986739e5c6aa4
1 /* { dg-do run } */
2 /* { dg-options "-O2" } */
3 /* { dg-require-effective-target tls_runtime } */
4 /* { dg-add-options tls } */
6 __thread double thrtest[81];
7 int main ()
9 int i;
10 for (i = 0; i < 81; i++)
11 thrtest[i] = 1.0;
12 return 0;