PR middle-end/77674
[official-gcc.git] / gcc / testsuite / g++.dg / gomp / tls-wrap3.C
blobdd4b900e826ff6f81d5a635a053ee1564cb3272a
1 // If we can't see the definition at all, we need to assume there might be
2 // an init function.
4 // { dg-require-alias "" }
5 // { dg-require-effective-target tls }
6 // { dg-final { scan-assembler "_ZTW1i" } }
7 // { dg-final { scan-assembler "_ZTH1i" } }
9 extern int i;
10 #pragma omp threadprivate (i)
12 int main()
14   return i - 42;