aboutsummaryrefslogtreecommitdiff
path: root/gas/write.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2018-07-06 11:46:14 +0100
committerNick Clifton <nickc@redhat.com>2018-07-06 11:46:14 +0100
commit2e48456f0236d39b6de98feb7168f56cef155912 (patch)
treeef904ed5d1f8b99bb67e26c10b05618f8c8e1c95 /gas/write.c
parent269965964e8a6586a07912a60e08eeb0053bfb2a (diff)
downloadgdb-2e48456f0236d39b6de98feb7168f56cef155912.zip
gdb-2e48456f0236d39b6de98feb7168f56cef155912.tar.gz
gdb-2e48456f0236d39b6de98feb7168f56cef155912.tar.bz2
Fix the relocs created to adjust notes created by the assembler.
* write.c (maybe_generate_build_notes): Bias reloc offsets by the number of notes already generated.
Diffstat (limited to 'gas/write.c')
-rw-r--r--gas/write.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gas/write.c b/gas/write.c
index 39c894a..1c0ee38 100644
--- a/gas/write.c
+++ b/gas/write.c
@@ -2008,7 +2008,7 @@ maybe_generate_build_notes (void)
if (sym->bsym != NULL
&& sym->bsym->flags & BSF_SECTION_SYM
&& sym->bsym->section != NULL
- /* Skip linkonce sections - we cannot these section symbols as they may disappear. */
+ /* Skip linkonce sections - we cannot use these section symbols as they may disappear. */
&& (sym->bsym->section->flags & (SEC_CODE | SEC_LINK_ONCE)) == SEC_CODE
/* Not all linkonce sections are flagged... */
&& strncmp (S_GET_NAME (sym), ".gnu.linkonce", sizeof ".gnu.linkonce" - 1) != 0)
@@ -2038,10 +2038,10 @@ maybe_generate_build_notes (void)
memcpy (note + 12, "GA$3a1", 8);
/* Create a relocation to install the start address of the note... */
- create_note_reloc (sec, sym, 20, desc_reloc, 0, note);
+ create_note_reloc (sec, sym, total_size + 20, desc_reloc, 0, note);
/* ...and another one to install the end address. */
- create_note_reloc (sec, sym, desc2_offset, desc_reloc,
+ create_note_reloc (sec, sym, total_size + desc2_offset, desc_reloc,
bfd_get_section_size (sym->bsym->section),
note);