diff options
author | Roland McGrath <roland@hack.frob.com> | 2015-05-06 13:32:18 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2015-05-06 13:32:18 -0700 |
commit | b5fe8ec8b68589680cc1eeb7442f08afa3c32058 (patch) | |
tree | 7206c7ec22cd1d98d4062f27dd2f5d516041e52c /elf/tst-tlsalign-lib.c | |
parent | 48276b67db5357bab9feaab4f8cc9af5c35ced75 (diff) | |
download | glibc-b5fe8ec8b68589680cc1eeb7442f08afa3c32058.tar glibc-b5fe8ec8b68589680cc1eeb7442f08afa3c32058.tar.gz glibc-b5fe8ec8b68589680cc1eeb7442f08afa3c32058.tar.bz2 glibc-b5fe8ec8b68589680cc1eeb7442f08afa3c32058.zip |
BZ#18383: Add test case for large alignment in TLS blocks.
Diffstat (limited to 'elf/tst-tlsalign-lib.c')
-rw-r--r-- | elf/tst-tlsalign-lib.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/elf/tst-tlsalign-lib.c b/elf/tst-tlsalign-lib.c new file mode 100644 index 0000000000..4371e581a6 --- /dev/null +++ b/elf/tst-tlsalign-lib.c @@ -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))); |