Fix broken MinGW build of gcc.c
[official-gcc.git] / gcc / testsuite / g++.dg / tls / thread_local-wrap1.C
blob813a6727b08bfed37e75958678324fcc499574c8
1 // If we can see the definition at the use site, we don't need to bother
2 // with a wrapper.
4 // { dg-do compile { target c++11 } }
5 // { dg-require-effective-target tls }
6 // { dg-final { scan-assembler-not "_ZTW1i" } }
8 thread_local int i = 42;
10 int main()
12   return i - 42;