xref: /openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.threads/tls-main.c (revision 43003dfe3ad45d1698bed8a37f2b0f5b14f20d4f)
1 __thread int i_tls = 2;
2 int main ()
3 {
4   int result;
5   result = foo (); /* Call to foo should return 2, not 1.  */
6   result ++;
7   return 0; /* break here to check result */
8 }
9 
10