Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.dg / tls / pr24428.c
blobecb747ede6de74fb1bb13478c0613abf5c2420f1
1 /* { dg-do run } */
2 /* { dg-options "-O2" } */
3 /* { dg-require-effective-target tls_runtime } */
5 __thread double thrtest[81];
6 int main ()
8 int i;
9 for (i = 0; i < 81; i++)
10 thrtest[i] = 1.0;
11 return 0;