diff options
author | Cary Coutant <ccoutant@gmail.com> | 2016-01-12 11:39:50 -0800 |
---|---|---|
committer | Cary Coutant <ccoutant@gmail.com> | 2016-01-12 11:39:50 -0800 |
commit | 8a8880cb673893c479b473f598905c0490897817 (patch) | |
tree | 1cfdc0e3a0d152b999c44864248ffde869c78e20 /gold/i386.cc | |
parent | d1193addae7e5a24dc867f9946681ef0781a766f (diff) | |
download | gdb-8a8880cb673893c479b473f598905c0490897817.zip gdb-8a8880cb673893c479b473f598905c0490897817.tar.gz gdb-8a8880cb673893c479b473f598905c0490897817.tar.bz2 |
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/i386.cc')
-rw-r--r-- | gold/i386.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gold/i386.cc b/gold/i386.cc index a7168a8..3715e5e 100644 --- a/gold/i386.cc +++ b/gold/i386.cc @@ -743,6 +743,14 @@ class Target_i386 : public Sized_target<32, false> public gold::Default_classify_reloc<elfcpp::SHT_REL, 32, false> { public: + typedef typename Reloc_types<elfcpp::SHT_REL, 32, false>::Reloc + Reltype; + + // Return the explicit addend of the relocation (return 0 for SHT_REL). + static typename elfcpp::Elf_types<32>::Elf_Swxword + get_r_addend(const Reltype*) + { return 0; } + // Return the size of the addend of the relocation (only used for SHT_REL). static unsigned int get_size_for_reloc(unsigned int, Relobj*); |