Mention IFUNC enhancements to testsuite in NEWS.
[platform/upstream/glibc.git] / elf / tst-tlsmod13a.c
1 #include <tls.h>
2
3 __thread int b[2] __attribute__ ((tls_model ("initial-exec")));
4
5 extern int foo (void);
6
7 int
8 bar (void)
9 {
10   return foo () + b[0];
11 }