* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / tls / thread_local-wrap4.C
blob292c86806f443f152394faee8dde254f5262aa46
1 // We don't need to call the wrapper through the PLT; we can use a separate
2 // copy per shared object.
4 // { dg-do compile { target c++11 } }
5 // { dg-require-effective-target tls }
6 // { dg-require-effective-target fpic }
7 // { dg-options "-fPIC" }
8 // { dg-final { scan-assembler-not "_ZTW1i@PLT" { target i?86-*-* x86_64-*-* } } }
10 extern thread_local int i;
12 int main()
14   return i - 42;