diff options
author | Ian Lance Taylor <iant@google.com> | 2008-03-19 21:41:38 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2008-03-19 21:41:38 +0000 |
commit | 96a2b4e4bf67a7430e7ddd06a1d0730a49e6b07e (patch) | |
tree | 071317d44af235c3687bd900897968735303ebf2 /gold/output.h | |
parent | 49a834f99faef9fd60532e6601c33bbeac27142b (diff) | |
download | gdb-96a2b4e4bf67a7430e7ddd06a1d0730a49e6b07e.zip gdb-96a2b4e4bf67a7430e7ddd06a1d0730a49e6b07e.tar.gz gdb-96a2b4e4bf67a7430e7ddd06a1d0730a49e6b07e.tar.bz2 |
Make sure the start and size of the TLS segment are aligned.
Diffstat (limited to 'gold/output.h')
-rw-r--r-- | gold/output.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gold/output.h b/gold/output.h index ac812a0..e394538 100644 --- a/gold/output.h +++ b/gold/output.h @@ -2582,7 +2582,7 @@ class Output_segment // address of the immediately following segment. Update *POFF and // *PSHNDX. This should only be called for a PT_LOAD segment. uint64_t - set_section_addresses(bool reset, uint64_t addr, off_t* poff, + set_section_addresses(const Layout*, bool reset, uint64_t addr, off_t* poff, unsigned int* pshndx); // Set the minimum alignment of this segment. This may be adjusted @@ -2638,8 +2638,9 @@ class Output_segment // Set the section addresses in an Output_data_list. uint64_t - set_section_list_addresses(bool reset, Output_data_list*, uint64_t addr, - off_t* poff, unsigned int* pshndx); + set_section_list_addresses(const Layout*, bool reset, Output_data_list*, + uint64_t addr, off_t* poff, unsigned int* pshndx, + bool* in_tls); // Return the number of Output_sections in an Output_data_list. unsigned int |