Merge -r 127928:132243 from trunk
[official-gcc.git] / gcc / testsuite / g++.dg / gomp / tls-2.C
blob26dbc53e5f8051ec4d5f08b86e048af4059778d0
1 /* { dg-do compile } */
2 /* { dg-require-effective-target tls_native } */
4 extern char buf[];
5 #pragma omp threadprivate (buf) /* { dg-error "has incomplete type" } */
7 void
8 foo (void)
10   int i;
11 #pragma omp threadprivate (i) /* { dg-error "automatic variable" } */
12   i = 0;