From ca8dc5ef325e64dcd8aac0a3966deb4aa7c56d22 Mon Sep 17 00:00:00 2001 From: Catherine Moore Date: Fri, 30 Jul 1999 15:08:39 +0000 Subject: [PATCH] Fix up vtable entry relocs --- gas/ChangeLog | 5 +++++ gas/config/tc-arm.c | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/gas/ChangeLog b/gas/ChangeLog index 7116952e9..eea3d4069 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +1999-07-30 Catherine Moore + + * config/tc-arm.c (tc_gen_reloc): Record the vtable entry in + the relocation's section offset. + 1999-07-29 Alan Modra * write.c (fixup_segment): Fix generic error check overflow test. diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 7a90601a5..22f2697a5 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -6000,6 +6000,11 @@ tc_gen_reloc (section, fixp) return NULL; } + /* HACK: Since arm ELF uses Rel instead of Rela, encode the + vtable entry to be used in the relocation's section offset. */ + if (fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY) + reloc->address = fixp->fx_offset; + return reloc; } -- 2.11.4.GIT