From: Matthew Gretton-Dann Date: Mon, 20 Sep 2010 16:26:53 +0000 (+0000) Subject: * ld/testsuite/ld-arm/script-type.ld: Update to generate symbols in a section. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=afdfce21090b36e764aa3e6ae41fa51f82322385;p=binutils-gdb.git * ld/testsuite/ld-arm/script-type.ld: Update to generate symbols in a section. --- diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index 1f52f8c4de8..038dd3810ed 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2010-09-20 Matthew Gretton-Dann + + * ld-arm/script-type.ld: Update to generate symbols in a section. + 2010-09-19 Richard Sandiford * ld-mips-elf/elf-rel-got-n32.d: Swap two local GOT entries diff --git a/ld/testsuite/ld-arm/script-type.ld b/ld/testsuite/ld-arm/script-type.ld index 684fc97275b..01995eb07eb 100644 --- a/ld/testsuite/ld-arm/script-type.ld +++ b/ld/testsuite/ld-arm/script-type.ld @@ -1,7 +1,9 @@ SECTIONS { - foo_a = bar_a; - foo_t = bar_t; - foo_o = bar_o; - .text : { *(.text) } - .ARM.attribues 0 : { *(.ARM.attributes) } + .text : { + foo_a = bar_a; + foo_t = bar_t; + foo_o = bar_o; + *(.text) + } + .ARM.attribues 0 : { *(.ARM.attributes) } }