From: H.J. Lu Date: Fri, 31 Aug 2018 11:42:51 +0000 (-0700) Subject: gas: Pass -mx86-used-note=no to assembler X-Git-Tag: users/ARM/embedded-binutils-master-2018q4~925 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5e8a54c6c4c753b6bbd447c74f5df8707bb0a06c;p=external%2Fbinutils.git gas: Pass -mx86-used-note=no to assembler Since x86 assembler may generate .note.gnu.property section, pass -mx86-used-note=no to assembler for section2 test on ELF/x86 targets to avoid .note.gnu.property section. * testsuite/gas/elf/elf.exp: Pass -mx86-used-note=no to assembler for section2 test on ELF/x86 targets. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 41d826c..d4ec42b 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,10 @@ 2018-08-31 H.J. Lu + * testsuite/gas/elf/elf.exp: Pass -mx86-used-note=no to + assembler for section2 test on ELF/x86 targets. + +2018-08-31 H.J. Lu + * testsuite/gas/cfi/cfi-label.d: Pass -mx86-used-note=no to assembler. diff --git a/gas/testsuite/gas/elf/elf.exp b/gas/testsuite/gas/elf/elf.exp index ee4aa57..44f26c3 100644 --- a/gas/testsuite/gas/elf/elf.exp +++ b/gas/testsuite/gas/elf/elf.exp @@ -170,7 +170,11 @@ if { [is_elf_format] } then { if {! [istarget "h8300-*-*"]} then { # The h8300 port issues a warning message for # new sections created without atrributes. - run_elf_list_test "section2" "$target_machine" "-al" "-s" "" + if { [istarget "i*86-*-*"] || [istarget "x86_64-*-*"] } then { + run_elf_list_test "section2" "$target_machine" "-al -mx86-used-note=no" "-s" "" + } { + run_elf_list_test "section2" "$target_machine" "-al" "-s" "" + } } run_dump_test "section3" run_dump_test "section4"