summaryrefslogtreecommitdiff
path: root/test/tls/tst-tlsmod13a.c
blob: 14b12b032b42900cc7823056b53b69eaa5531df9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <tls.h>

#if defined USE_TLS && defined HAVE___THREAD \
    && defined HAVE_TLS_MODEL_ATTRIBUTE
__thread int b[2] __attribute__ ((tls_model ("initial-exec")));
#else
int b[2];
#endif

extern int foo (void);

int
bar (void)
{
  return foo () + b[0];
}