xref: /openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.threads/tls-shared.c (revision 5a38ef86d0b61900239c7913d24a05e7b88a58f0)
1 __thread int i_tls = 1;
2 int foo ()
3 {
4   return i_tls;
5 }
6 
7