diff options
author | Richard Henderson <rth@redhat.com> | 2002-05-02 17:46:59 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 2002-05-02 17:46:59 +0000 |
commit | 4a93828795dc385e4982f24eb3a1fed3800d92c1 (patch) | |
tree | ea89df50616dd017b8c12ad67318ebab2912018d /bfd/elf64-alpha.c | |
parent | 6aa3df4506c3c8ab591a2947239492ee3cfd0ab0 (diff) | |
download | gdb-4a93828795dc385e4982f24eb3a1fed3800d92c1.tar.gz |
* elf64-alpha.c (elf64_alpha_relocate_section): Force relative relocs
vs SHN_UNDEF to zero.
Diffstat (limited to 'bfd/elf64-alpha.c')
-rw-r--r-- | bfd/elf64-alpha.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bfd/elf64-alpha.c b/bfd/elf64-alpha.c index 7151f0677d9..94b4ebe056e 100644 --- a/bfd/elf64-alpha.c +++ b/bfd/elf64-alpha.c @@ -3695,6 +3695,16 @@ elf64_alpha_relocate_section (output_bfd, info, input_bfd, input_section, } goto default_reloc; + case R_ALPHA_SREL32: + case R_ALPHA_SREL64: + /* ??? .eh_frame references to discarded sections will be smashed + to relocations against SHN_UNDEF. The .eh_frame format allows + NULL to be encoded as 0 in any format, so this works here. */ + if (r_symndx == 0) + howto = (elf64_alpha_howto_table + + (r_type - R_ALPHA_SREL32 + R_ALPHA_REFLONG)); + goto default_reloc; + default: default_reloc: r = _bfd_final_link_relocate (howto, input_bfd, input_section, |