summaryrefslogtreecommitdiff
path: root/gold/mips.cc
diff options
context:
space:
mode:
authorCary Coutant <ccoutant@gmail.com>2016-01-12 11:39:50 -0800
committerCary Coutant <ccoutant@gmail.com>2016-01-12 11:39:50 -0800
commit8a8880cb673893c479b473f598905c0490897817 (patch)
tree1cfdc0e3a0d152b999c44864248ffde869c78e20 /gold/mips.cc
parentd1193addae7e5a24dc867f9946681ef0781a766f (diff)
Fix breakage for SHT_REL targets where get_r_addend() gives internal error.
gold/ * arm.cc (Target_arm::Classify_reloc::get_r_addend): New method. * i386.cc (Target_i386::Classify_reloc::get_r_addend): New method. * mips.cc (Target_arm::Mips_classify_reloc::get_r_addend): (Both specializations) New method.
Diffstat (limited to 'gold/mips.cc')
-rw-r--r--gold/mips.cc12
1 files changed, 10 insertions, 2 deletions
diff --git a/gold/mips.cc b/gold/mips.cc
index c57ef4f807..6c4f379b90 100644
--- a/gold/mips.cc
+++ b/gold/mips.cc
@@ -2964,7 +2964,11 @@ class Mips_classify_reloc<sh_type_, 32, big_endian> :
// Return the explicit addend of the relocation (return 0 for SHT_REL).
static inline unsigned int
get_r_addend(const Reltype* reloc)
- { return Mips_reloc_types<sh_type_, 32, big_endian>::get_r_addend(reloc); }
+ {
+ if (sh_type_ == elfcpp::SHT_REL)
+ return 0;
+ return Mips_reloc_types<sh_type_, 32, big_endian>::get_r_addend(reloc);
+ }
// Write the r_info field to a new reloc, using the r_info field from
// the original reloc, replacing the r_sym field with R_SYM.
@@ -3010,7 +3014,11 @@ class Mips_classify_reloc<sh_type_, 64, big_endian> :
// Return the explicit addend of the relocation (return 0 for SHT_REL).
static inline typename elfcpp::Elf_types<64>::Elf_Swxword
get_r_addend(const Reltype* reloc)
- { return Mips_reloc_types<sh_type_, 64, big_endian>::get_r_addend(reloc); }
+ {
+ if (sh_type_ == elfcpp::SHT_REL)
+ return 0;
+ return Mips_reloc_types<sh_type_, 64, big_endian>::get_r_addend(reloc);
+ }
// Write the r_info field to a new reloc, using the r_info field from
// the original reloc, replacing the r_sym field with R_SYM.