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