+2002-06-07 Nick Clifton <nickc@cambridge.redhat.com>
+
+ * ld-scripts/phdrs2.s: Use .p2align instead of .align.
+ Use section names .foo and .bar instead of .text and .data.
+ * ld-scripts/phdrs2.t: Refer to .foo and .bar instead of .text
+ and .data.
+
2002-06-06 David Heine <dlheine@tensilica.com>
* ld-scripts/phdrs2.exp: New file: Run second phdrs test.
PHDRS
{
- text PT_LOAD ;
- data PT_LOAD ;
+ Foo PT_LOAD ;
+ Bar PT_LOAD ;
}
SECTIONS
{
. = 0x800000 - 1;
- /* The PHDRS generated should start at the aligned .text section
+ /* The PHDRS generated should start at the aligned .foo section
address, not the unaligned .empty section address */
.empty : {
EMPTY_START = ABSOLUTE(.) ;
*(.empty)
EMPTY_END = ABSOLUTE(.) ;
- } : text
- .text : { *(.text) } :text
- .data : { *(.data)
+ } : Foo
+ .foo : { *(.foo) } : Foo
+ .bar : { *(.bar)
LONG(EMPTY_START) ;
- } :data
+ } : Bar
/DISCARD/ : { *(.*) }
}