[PATCH] RISC-V: Bugfix for unrecognizable insn for XTheadVector
[official-gcc.git] / gcc / testsuite / g++.dg / gomp / tls-wrap2.C
blob7aa13711c0b6d4dbfce900055b1c944101dbdbb1
1 // If we can't see the definition at the use site, but it's in this translation
2 // unit, we build a wrapper but don't bother with an init function.
4 // { dg-require-effective-target tls }
5 // { dg-final { scan-assembler "_ZTW1i" } }
6 // { dg-final { scan-assembler-not "_ZTH1i" } }
8 extern int i;
9 #pragma omp threadprivate (i)
11 int main()
13   return i - 42;
16 int i = 42;