summaryrefslogtreecommitdiff
path: root/elf/tst-tlsalign-lib.c
blob: 4371e581a6037b1049aad9cf9b32f44c07654325 (plain)
1
2
3
4
5
6
__thread int mod_tdata1 = 1;
__thread int mod_tdata2 __attribute__ ((aligned (0x10))) = 2;
__thread int mod_tdata3 __attribute__ ((aligned (0x1000))) = 4;
__thread int mod_tbss1;
__thread int mod_tbss2 __attribute__ ((aligned (0x10)));
__thread int mod_tbss3 __attribute__ ((aligned (0x1000)));