This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

[patch] testsuite/ld-scripts/cross2.t



This is the only ld test I could find that used gcc to generate the
objects, but didn't allow for the .text.* sections.  Seems obvious to
me, but I'm extra paranoid about test cases ;-)  OK to apply?

2001-03-06  DJ Delorie  <dj@redhat.com>

	* ld-scripts/cross2.t: Support any type of text/data sections, not
	just the canonical ones.

Index: ld-scripts/cross2.t
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-scripts/cross2.t,v
retrieving revision 1.1.1.1
diff -r1.1.1.1 cross2.t
4,5c4,5
<   .text : { *(.text) *(.pr) }
<   .data : { *(.data) *(.sdata) *(.rw) *(.tc0) *(.tc) }
---
>   .text : { *(.text) *(.text.*) *(.pr) }
>   .data : { *(.data) *(.data.*) *(.sdata) *(.rw) *(.tc0) *(.tc) }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]