diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2001-07-11 19:03:10 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2001-07-11 19:03:10 +0000 |
commit | 067a7d17c46263a249d418edc6111b7cbd694527 (patch) | |
tree | cad70e014ee934cb5703fb27959f73711be7ac61 /bfd | |
parent | f175af981800f9ab8fbcd8af1823c1ab411404ab (diff) | |
download | binutils-gdb-067a7d17c46263a249d418edc6111b7cbd694527.tar.gz |
2001-07-11 H.J. Lu <hjl@gnu.org>
* elf64-alpha.c (elf64_alpha_check_relocs): Only use the same
ALLOC|LOAD flags as the source section for debugging sections
when creating the reloc section.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 6 | ||||
-rw-r--r-- | bfd/elf64-alpha.c | 9 |
2 files changed, 13 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index b4937f55e78..c0e0704a7ec 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2001-07-11 H.J. Lu <hjl@gnu.org> + + * elf64-alpha.c (elf64_alpha_check_relocs): Only use the same + ALLOC|LOAD flags as the source section for debugging sections + when creating the reloc section. + 2001-07-05 Jim Wilson <wilson@redhat.com> * linker.c (_bfd_generic_link_add_one_symbol, case BIG): Use diff --git a/bfd/elf64-alpha.c b/bfd/elf64-alpha.c index bd89a7b8053..9d0af3cea90 100644 --- a/bfd/elf64-alpha.c +++ b/bfd/elf64-alpha.c @@ -2589,8 +2589,13 @@ elf64_alpha_check_relocs (abfd, info, sec, relocs) sreloc = bfd_make_section (dynobj, rel_sec_name); if (sreloc == NULL || !bfd_set_section_flags (dynobj, sreloc, - ((sec->flags & (SEC_ALLOC - | SEC_LOAD)) + (((sec->flags + & SEC_DEBUGGING) + ? (sec->flags + & (SEC_ALLOC + | SEC_LOAD)) + : (SEC_ALLOC + | SEC_LOAD)) | SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_LINKER_CREATED |