Alexander von Gluck IV 3d544ab266 import gcc 7.3.0
2018-03-19 15:34:23 -05:00

15 lines
203 B
C

/* PR c/26171 */
/* { dg-do run } */
/* { dg-options "-O0" } */
/* { dg-require-effective-target tls_runtime } */
int thrv = 0;
#pragma omp threadprivate (thrv)
int
main ()
{
thrv = 1;
return 0;
}