diff options
author | Matthew Gretton-Dann <matthew.gretton-dann@arm.com> | 2010-09-20 16:26:53 +0000 |
---|---|---|
committer | Matthew Gretton-Dann <matthew.gretton-dann@arm.com> | 2010-09-20 16:26:53 +0000 |
commit | afdfce21090b36e764aa3e6ae41fa51f82322385 (patch) | |
tree | 956a70176cb43636e140f8092c9f67e0b703bd30 /ld/testsuite/ld-arm | |
parent | bc1bc43fdc18de229ed2cdfa853811a6ed603caf (diff) | |
download | gdb-afdfce21090b36e764aa3e6ae41fa51f82322385.zip gdb-afdfce21090b36e764aa3e6ae41fa51f82322385.tar.gz gdb-afdfce21090b36e764aa3e6ae41fa51f82322385.tar.bz2 |
* ld/testsuite/ld-arm/script-type.ld: Update to generate symbols in a section.
Diffstat (limited to 'ld/testsuite/ld-arm')
-rw-r--r-- | ld/testsuite/ld-arm/script-type.ld | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/ld/testsuite/ld-arm/script-type.ld b/ld/testsuite/ld-arm/script-type.ld index 684fc97..01995eb 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) } } |