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