* ld/testsuite/ld-arm/script-type.ld: Update to generate symbols in a section.
authorMatthew Gretton-Dann <matthew.gretton-dann@arm.com>
Mon, 20 Sep 2010 16:26:53 +0000 (16:26 +0000)
committerMatthew Gretton-Dann <matthew.gretton-dann@arm.com>
Mon, 20 Sep 2010 16:26:53 +0000 (16:26 +0000)
ld/testsuite/ChangeLog
ld/testsuite/ld-arm/script-type.ld

index 1f52f8c4de893a116393801048579f0ec4cf9ae1..038dd3810ed1f4ac4cabc1e6243367a2854809e0 100644 (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
index 684fc97275b4a1a0b29996542310a395d775433a..01995eb07ebef2515a30376bded2f662990ecbca 100644 (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) }
 }