glibc/elf/tst-tlsmod13a.c
Jakub Jelinek 32c075e1f0 .
2007-07-31 13:33:18 +00:00

16 lines
235 B
C

#include <tls.h>
#if 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];
}