diff options
author | Bob Wilson <bob.wilson@acm.org> | 2005-10-03 21:49:17 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@acm.org> | 2005-10-03 21:49:17 +0000 |
commit | d638e0acb3930103ce173e42b7f3d971e660fe39 (patch) | |
tree | 35ae67e2fd8fbc0c4be1d1c622f30f6306c20883 /bfd | |
parent | 4945bb8a8eda451e7297f4349ef20c1a82f0f22d (diff) | |
download | gdb-d638e0acb3930103ce173e42b7f3d971e660fe39.zip gdb-d638e0acb3930103ce173e42b7f3d971e660fe39.tar.gz gdb-d638e0acb3930103ce173e42b7f3d971e660fe39.tar.bz2 |
* elf32-xtensa.c (relocations_reach): Skip range check for
absolute literals.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/elf32-xtensa.c | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 683a88b..3ba259b 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2005-10-03 David Heine <dlheine@tensilica.com> + + * elf32-xtensa.c (relocations_reach): Skip range check for + absolute literals. + 2005-10-03 Alan Modra <amodra@bigpond.net.au> * elf.c (_bfd_elf_get_synthetic_symtab): Set BSF_GLOBAL on diff --git a/bfd/elf32-xtensa.c b/bfd/elf32-xtensa.c index fc235de..e565942 100644 --- a/bfd/elf32-xtensa.c +++ b/bfd/elf32-xtensa.c @@ -7462,6 +7462,11 @@ relocations_reach (source_reloc *reloc, != sec->output_section) return FALSE; + /* Absolute literals in the same output section can always be + combined. */ + if (reloc[i].is_abs_literal) + continue; + /* A literal with no PC-relative relocations can be moved anywhere. */ if (reloc[i].opnd != -1) { |