mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
BZ#18383: Add test case for large alignment in TLS blocks.
This commit is contained in:
6
elf/tst-tlsalign-lib.c
Normal file
6
elf/tst-tlsalign-lib.c
Normal file
@ -0,0 +1,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)));
|
Reference in New Issue
Block a user