From: DJ Delorie Date: Tue, 6 Mar 2001 23:03:28 +0000 (+0000) Subject: * ld-scripts/cross2.t: Support any type of text/data sections, not X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b536df83eec637c252abc3577b3ee846d3795457;p=binutils-gdb.git * ld-scripts/cross2.t: Support any type of text/data sections, not just the canonical ones. --- diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index 59ce30ed23f..814093e1867 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2001-03-06 DJ Delorie + + * ld-scripts/cross2.t: Support any type of text/data sections, not + just the canonical ones. + 2001-02-14 H.J. Lu * ld-bootstrap/bootstrap.exp: Rebuild tmpdir/ld2 with tmpdir/ld3 diff --git a/ld/testsuite/ld-scripts/cross2.t b/ld/testsuite/ld-scripts/cross2.t index cf046f6c36b..4dd7ddd88d4 100644 --- a/ld/testsuite/ld-scripts/cross2.t +++ b/ld/testsuite/ld-scripts/cross2.t @@ -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) } }