* ld/testsuite/ld-arm/script-type.ld: Update to generate symbols in a section.

This commit is contained in:
Matthew Gretton-Dann 2010-09-20 16:26:53 +00:00
parent bc1bc43fdc
commit afdfce2109
2 changed files with 11 additions and 5 deletions

View File

@ -1,3 +1,7 @@
2010-09-20 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
* ld-arm/script-type.ld: Update to generate symbols in a section.
2010-09-19 Richard Sandiford <rdsandiford@googlemail.com>
* ld-mips-elf/elf-rel-got-n32.d: Swap two local GOT entries

View File

@ -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) }
}