From 1781a9d0f3d0319abeeae73b1f1f78fbf3778739 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Mon, 15 Feb 2021 09:48:50 +1030 Subject: nds32_elf_get_relocated_section_contents nds32_elf_get_relocated_section_contents uses nds32_get_section_contents to read sections contents, but nds32_get_section_contents has the wrong behaviour as it calls bfd_malloc_and_get_section. That function always mallocs its output buffer, whereas get_relocated_section_contents must support an already allocated buffer. bfd/ * elf32-nds32.c (nds32_get_section_contents): Replace bfd_malloc_and_get_section with bfd_get_full_section_contents. (nds32_elf_relax_delete_blanks): Init contents. (nds32_elf_relax_section, nds32_relax_fp_as_gp): Likewise. binutils/ * testsuite/binutils-all/compress.exp: Remove nds32 xfails. * testsuite/binutils-all/objdump.exp: Likewise. --- binutils/ChangeLog | 5 +++++ binutils/testsuite/binutils-all/compress.exp | 4 ---- binutils/testsuite/binutils-all/objdump.exp | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) (limited to 'binutils') diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 12ff93d..a7a9cae 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2021-02-15 Alan Modra + + * testsuite/binutils-all/compress.exp: Remove nds32 xfails. + * testsuite/binutils-all/objdump.exp: Likewise. + 2021-02-14 Alan Modra * objdump.c (slurp_symtab): Don't add an extra entry for NULL diff --git a/binutils/testsuite/binutils-all/compress.exp b/binutils/testsuite/binutils-all/compress.exp index 5801f6b..98daf67 100644 --- a/binutils/testsuite/binutils-all/compress.exp +++ b/binutils/testsuite/binutils-all/compress.exp @@ -162,7 +162,6 @@ if ![string match "" $got] then { } } -setup_xfail "nds32*-*-*" set testname "objdump compress debug sections" set got [remote_exec host "$OBJDUMP -W ${compressedfile}.o" "" "/dev/null" "objdump.out"] if { [lindex $got 0] != 0 || ![string match "" [lindex $got 1]] } then { @@ -175,7 +174,6 @@ if { [regexp_diff objdump.out $srcdir/$subdir/dw2-1.W] } then { pass "$testname" } -setup_xfail "nds32*-*-*" set testname "objdump compress debug sections 3" set got [remote_exec host "$OBJDUMP -W ${compressedfile3}.o" "" "/dev/null" "objdump.out"] if { [lindex $got 0] != 0 || ![string match "" [lindex $got 1]] } then { @@ -546,7 +544,6 @@ if ![string match "" $got] then { } } -setup_xfail "nds32*-*-*" set testname "objcopy compress debug sections in archive with zlib-gabi" set got [binutils_run $OBJCOPY "--compress-debug-sections=zlib-gabi ${copyfile}gabi.a ${compressedcopyfile}gabi.a"] if ![string match "" $got] then { @@ -567,7 +564,6 @@ if ![string match "" $got] then { } } -setup_xfail "nds32*-*-*" set testname "objdump compress debug sections 3 with zlib-gabi" set got [remote_exec host "$OBJDUMP -W ${compressedfile3}gabi.o" "" "/dev/null" "objdump.out"] if { [lindex $got 0] != 0 || ![string match "" [lindex $got 1]] } then { diff --git a/binutils/testsuite/binutils-all/objdump.exp b/binutils/testsuite/binutils-all/objdump.exp index 6f95d40..9a0720f 100644 --- a/binutils/testsuite/binutils-all/objdump.exp +++ b/binutils/testsuite/binutils-all/objdump.exp @@ -503,7 +503,7 @@ if { ![is_elf_format] } then { send_log "\n" } - setup_xfail "msp430-*-*" "nds32*-*-*" + setup_xfail "msp430-*-*" if { [regexp_diff objdump.out $srcdir/$subdir/dw2-ranges.W] } then { fail "objdump -W for debug_ranges" } else { -- cgit v1.1