diff options
Diffstat (limited to 'elf/tst-tls19mod3.c')
-rw-r--r-- | elf/tst-tls19mod3.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/elf/tst-tls19mod3.c b/elf/tst-tls19mod3.c new file mode 100644 index 0000000000..e7b28016b3 --- /dev/null +++ b/elf/tst-tls19mod3.c @@ -0,0 +1,16 @@ +#include <stdio.h> + +static int __thread tbaz __attribute__ ((tls_model ("local-dynamic"))) = 42; + +void +setter2 (int a) +{ + tbaz = a; +} + +int +baz (void) +{ + printf ("&tbaz=%p\n", &tbaz); + return tbaz; +} |