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