Add a test for BZ #15674
[glibc.git] / elf / tst-tlsmod13a.c
blobd5515d4a15ff519820ddfe2fe08de880dc9c66ad
1 #include <tls.h>
3 __thread int b[2] __attribute__ ((tls_model ("initial-exec")));
5 extern int foo (void);
7 int
8 bar (void)
10 return foo () + b[0];