aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.threads/tls-main.c
blob: eec5d50bcf49753bcee8c1862546e5237b02d82b (plain)
1
2
3
4
5
6
7
8
9
__thread int i_tls = 2;
int main ()
{
  int result;
  result = foo (); /* Call to foo should return 2, not 1.  */
  result ++;
  return 0; /* break here to check result */
}