summaryrefslogtreecommitdiff
path: root/ld/testsuite
diff options
context:
space:
mode:
authormgretton <mgretton>2010-09-20 16:26:53 +0000
committermgretton <mgretton>2010-09-20 16:26:53 +0000
commit20b6cd593c9d45007729ff2af6b13cbb09cb5173 (patch)
treeb27d23456a8309a65329650daf7b76fc88aa75d1 /ld/testsuite
parent19263e953e3b9563cdfd7d6b19b8561271269e78 (diff)
downloadbinutils-redhat-20b6cd593c9d45007729ff2af6b13cbb09cb5173.tar.gz
* ld/testsuite/ld-arm/script-type.ld: Update to generate symbols in a section.
Diffstat (limited to 'ld/testsuite')
-rw-r--r--ld/testsuite/ChangeLog4
-rw-r--r--ld/testsuite/ld-arm/script-type.ld12
2 files changed, 11 insertions, 5 deletions
diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog
index 1f52f8c4de..038dd3810e 100644
--- a/ld/testsuite/ChangeLog
+++ b/ld/testsuite/ChangeLog
@@ -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
diff --git a/ld/testsuite/ld-arm/script-type.ld b/ld/testsuite/ld-arm/script-type.ld
index 684fc97275..01995eb07e 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) }
}