diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2003-06-17 23:43:18 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2003-06-17 23:43:18 +0000 |
commit | 9f1c3a0af772804f5e93ac3f2a72c30e286552bf (patch) | |
tree | 0b5f13c96f9724f9f6774532e28d0242b6d968c0 /bfd | |
parent | 0f84fde19ee862ccc2f5161fedb9a4f773169e47 (diff) | |
download | gdb-9f1c3a0af772804f5e93ac3f2a72c30e286552bf.zip gdb-9f1c3a0af772804f5e93ac3f2a72c30e286552bf.tar.gz gdb-9f1c3a0af772804f5e93ac3f2a72c30e286552bf.tar.bz2 |
2003-06-17 Roland McGrath <roland@redhat.com>
* elfxx-ia64.c (elfNN_ia64_relocate_section): Support
segment-relative relocation between different segments.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/elfxx-ia64.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index ecfbeb0..f799d2e 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2003-06-17 Roland McGrath <roland@redhat.com> + + * elfxx-ia64.c (elfNN_ia64_relocate_section): Support + segment-relative relocation between different segments. + 2003-06-17 Alan Modra <amodra@bigpond.net.au> * elf64-ppc.c (ppc64_elf_relocate_section): Do unaligned reloc diff --git a/bfd/elfxx-ia64.c b/bfd/elfxx-ia64.c index 37fc968..5e8dadf 100644 --- a/bfd/elfxx-ia64.c +++ b/bfd/elfxx-ia64.c @@ -4325,7 +4325,7 @@ elfNN_ia64_relocate_section (output_bfd, info, input_bfd, input_section, { int i; for (i = m->count - 1; i >= 0; i--) - if (m->sections[i] == sym_sec->output_section) + if (m->sections[i] == input_section->output_section) break; if (i >= 0) break; |