diff options
author | Alan Modra <amodra@gmail.com> | 2007-09-30 13:33:04 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2007-09-30 13:33:04 +0000 |
commit | 0f02bbd9f8fdee22cc91b4bef3f310d4dbc1eee5 (patch) | |
tree | 3ece265513b1a806ecfb92eb3e097c9cde14c83d /ld | |
parent | c9ccd0dfa0dbdda5a460ea69ce977b0af31dfc20 (diff) | |
download | fsf-binutils-gdb-0f02bbd9f8fdee22cc91b4bef3f310d4dbc1eee5.zip fsf-binutils-gdb-0f02bbd9f8fdee22cc91b4bef3f310d4dbc1eee5.tar.gz fsf-binutils-gdb-0f02bbd9f8fdee22cc91b4bef3f310d4dbc1eee5.tar.bz2 |
bfd/
* elflink.c (resolve_symbol): Handle symbols in SEC_MERGE
sections. Don't test symbol st_shndx. Don't bother with
bfd_link_hash_common symbols. Print longs rather than ints
in debug messages.
(eval_symbol): Replace "sym" and "advanced" params with "symp".
Replace "addr" and "section_offset" params with "dot". Don't
cast bfd_vma values to signed, cast them to bfd_signed_vma.
(bfd_elf_perform_complex_relocation): Delete "output_bfd", "info",
"local_syms" and "local_sections" params. Add "relocation".
Delete code calculating relocation value.
(evaluate_complex_relocation_symbols): Delete function. Fold into..
(elf_link_input_bfd): ..existing code examining relocs.
* elf-bfd.h (bfd_elf_perform_complex_relocation): Update prototype.
* elf32-mep.c (mep_elf_check_relocs): Delete function.
(mep_elf_gc_sweep_hook, mep_elf_gc_mark_hook): Likewise.
(mep_elf_object_p): Don't set elf_bad_symtab.
(elf_backend_check_relocs): Don't define.
(elf_backend_gc_mark_hook, elf_backend_gc_sweep_hook): Likewise.
(elf_backend_can_gc_sections, USE_RELA): Likwise.
(mep_elf_relocate_section): Move bfd_elf_perform_complex_relocation
call after we have calculated reloc value. Delete local sym
debug code. Use RELOC_FOR_GLOBAL_SYMBOL. Delete addend
adjusting code..
(elf_backend_rela_normal): ..instead define this.
ld/testsuite/
* ld-selective/sel-dump.exp: Add am33, m88k, mep to xfails.
* ld-selective/selective.exp: Don't run for same target list
we xfail sel-dump.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | ld/testsuite/ld-selective/sel-dump.exp | 6 | ||||
-rw-r--r-- | ld/testsuite/ld-selective/selective.exp | 11 |
3 files changed, 18 insertions, 5 deletions
diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index 701cac3..cecfd3c 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2007-09-29 Alan Modra <amodra@bigpond.net.au> + + * ld-selective/sel-dump.exp: Add am33, m88k, mep to xfails. + * ld-selective/selective.exp: Don't run for same target list + we xfail sel-dump. + 2007-09-29 Mike Frysinger <vapier@gentoo.org> * ld-alpha/tlsbin.rd: Use [0-9]+ to match section header count and diff --git a/ld/testsuite/ld-selective/sel-dump.exp b/ld/testsuite/ld-selective/sel-dump.exp index 2f6f5de..76a7577 100644 --- a/ld/testsuite/ld-selective/sel-dump.exp +++ b/ld/testsuite/ld-selective/sel-dump.exp @@ -28,8 +28,8 @@ set test_list [lsort [glob -nocomplain $srcdir/$subdir/*.d]] for { set i 0 } { $i < [llength $test_list] } { incr i } { # We need to strip the ".d", but can leave the dirname. verbose [file rootname [lindex $test_list $i]] - setup_xfail "alpha*-*" "arc*-*" "d30v*-*" "dlx*-*" "hppa64-*-*" - setup_xfail "i370*-*" "i860*-*" "i960*-*" "ia64*-*" "mn10200-*" - setup_xfail "or32-*" "pj-*" + setup_xfail "alpha*-*" "am33*-*" "arc*-*" "d30v*-*" "dlx*-*" + setup_xfail "hppa*64-*-*" "i370*-*" "i860*-*" "i960*-*" "ia64*-*" + setup_xfail "m88*-*" "mn10200-*" "mep-*" "or32-*" "pj-*" run_dump_test [file rootname [lindex $test_list $i]] } diff --git a/ld/testsuite/ld-selective/selective.exp b/ld/testsuite/ld-selective/selective.exp index bae4372..191cd63 100644 --- a/ld/testsuite/ld-selective/selective.exp +++ b/ld/testsuite/ld-selective/selective.exp @@ -27,8 +27,15 @@ if ![is_elf_format] { return } -# Alpha and IA64 do not support selective linking -if {[istarget "alpha*-*-*"] || [istarget "ia64-*-*"]} { +# These targets do not support selective linking +if {[istarget "alpha*-*-*"] || [istarget "am33*-*-*"] || + [istarget "arc-*-*"] || [istarget "d30v-*-*"] || + [istarget "dlx-*-*"] || [istarget "hppa*64*-*-*"] || + [istarget "i370-*-*"] || [istarget "i860-*-*"] || + [istarget "i960-*-*"] || [istarget "ia64-*-*"] || + [istarget "m88*-*-*"] || [istarget "mn10200-*-*"] || + [istarget "mep-*-*"] || [istarget "or32-*-*"] || + [istarget "pj*-*-*"]} { return } |