Fix unwind info in x86 memcmp-ssse3.
[glibc.git] / elf / tst-tlsmod16b.c
blob308e6bae92b98b9c4666150c78866339c46d3916
1 #include <tls.h>
3 #if defined HAVE___THREAD && defined HAVE_TLS_MODEL_ATTRIBUTE
4 extern __thread int tlsvar __attribute__((tls_model("initial-exec")));
5 #else
6 extern int tlsvar;
7 #endif
9 void *
10 in_dso (void)
12 return &tlsvar;