aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-scripts
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2001-03-06 23:03:28 +0000
committerDJ Delorie <dj@redhat.com>2001-03-06 23:03:28 +0000
commitb536df83eec637c252abc3577b3ee846d3795457 (patch)
tree9278efc9b03d826cd131636b914d170743a2eae5 /ld/testsuite/ld-scripts
parent4f3c3dbb370a8c0c8b66710c5d0c2854c1bab4f5 (diff)
downloadgdb-b536df83eec637c252abc3577b3ee846d3795457.zip
gdb-b536df83eec637c252abc3577b3ee846d3795457.tar.gz
gdb-b536df83eec637c252abc3577b3ee846d3795457.tar.bz2
* ld-scripts/cross2.t: Support any type of text/data sections, not
just the canonical ones.
Diffstat (limited to 'ld/testsuite/ld-scripts')
-rw-r--r--ld/testsuite/ld-scripts/cross2.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/testsuite/ld-scripts/cross2.t b/ld/testsuite/ld-scripts/cross2.t
index cf046f6..4dd7ddd 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) }
}