diff options
author | Alan Modra <amodra@gmail.com> | 2014-01-24 23:17:28 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2014-01-24 23:17:28 +1030 |
commit | d9d94ac86ba0193c897d1fc80b551996ae959d50 (patch) | |
tree | c6a86b35b9e02a56be246bb46cf2f7eba9b8cd1d /ld/ChangeLog | |
parent | 3ba720c788c2845c93a6dfe592f36163cbfa63fd (diff) | |
download | gdb-d9d94ac86ba0193c897d1fc80b551996ae959d50.zip gdb-d9d94ac86ba0193c897d1fc80b551996ae959d50.tar.gz gdb-d9d94ac86ba0193c897d1fc80b551996ae959d50.tar.bz2 |
TLS orphan section placement
Ensures TLS orphans are placed adjacent to existing TLS sections,
and fixes places where the output_section_statement flags (which might
not be set) were tested when bfd_section flags were available.
* ldlang.c (lang_output_section_find_by_flags): Be careful to
test look->bfd_section->flags if available rather than
look->flags. Separate SEC_THREAD_LOCAL handling from
SEC_READONLY loop, and rewrite.
Diffstat (limited to 'ld/ChangeLog')
-rw-r--r-- | ld/ChangeLog | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 59e9d36..9beee8c 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,10 @@ +2014-01-24 Alan Modra <amodra@gmail.com> + + * ldlang.c (lang_output_section_find_by_flags): Be careful to + test look->bfd_section->flags if available rather than + look->flags. Separate SEC_THREAD_LOCAL handling from + SEC_READONLY loop, and rewrite. + 2014-01-22 Alan Modra <amodra@gmail.com> * ldlang.c (asneeded_list_head, asneeded_list_tail): New vars. |