* ld-scripts/cross2.t: Support any type of text/data sections, not
authorDJ Delorie <dj@redhat.com>
Tue, 6 Mar 2001 23:03:28 +0000 (23:03 +0000)
committerDJ Delorie <dj@redhat.com>
Tue, 6 Mar 2001 23:03:28 +0000 (23:03 +0000)
just the canonical ones.

ld/testsuite/ChangeLog
ld/testsuite/ld-scripts/cross2.t

index 59ce30ed23f4525f4755faf06d91e7c6d81ebf66..814093e18671dfb9e49eb2b0966ec64fb2011808 100644 (file)
@@ -1,3 +1,8 @@
+2001-03-06  DJ Delorie  <dj@redhat.com>
+
+       * ld-scripts/cross2.t: Support any type of text/data sections, not
+       just the canonical ones.
+
 2001-02-14  H.J. Lu  <hjl@gnu.org>
 
        * ld-bootstrap/bootstrap.exp: Rebuild tmpdir/ld2 with tmpdir/ld3
index cf046f6c36bfa3452b277af713eb47f6e19a1339..4dd7ddd88d429e7f7dd3bc80e30f416933197a8d 100644 (file)
@@ -1,6 +1,6 @@
 NOCROSSREFS ( .text .data )
 SECTIONS
 {
-  .text : { *(.text) *(.pr) }
-  .data : { *(.data) *(.sdata) *(.rw) *(.tc0) *(.tc) }
+  .text : { *(.text) *(.text.*) *(.pr) }
+  .data : { *(.data) *(.data.*) *(.sdata) *(.rw) *(.tc0) *(.tc) }
 }