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