2007-03-06 H.J. Lu <hongjiu.lu@intel.com>

PR ld/4144
	* ld-elf/nobits-1.d: New file.
	* ld-elf/nobits-1.s: Likewise.
	* ld-elf/nobits-1.t: Likewise.
This commit is contained in:
H.J. Lu 2007-03-07 03:58:44 +00:00
parent 0e922b770e
commit d64cc92a74
4 changed files with 33 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2007-03-06 H.J. Lu <hongjiu.lu@intel.com>
PR ld/4144
* ld-elf/nobits-1.d: New file.
* ld-elf/nobits-1.s: Likewise.
* ld-elf/nobits-1.t: Likewise.
2007-03-02 Richard Sandiford <richard@codesourcery.com>
* ld-elf/binutils.exp: Revert last change.

View File

@ -0,0 +1,7 @@
#ld: -Tnobits-1.t
#readelf: -l --wide
#...
Section to Segment mapping:
Segment Sections...
00 .foo .bar

View File

@ -0,0 +1,6 @@
.globl _entry
.section .foo,"awx",%progbits
_entry:
.byte 0
.section .bar,"ax",%nobits
.byte 0

View File

@ -0,0 +1,13 @@
ENTRY(_entry)
PHDRS
{
data PT_LOAD;
}
SECTIONS
{
. = 0x1000000;
.foo : { *(.foo) } :data
. = 0x2000000;
.bar : { *(.bar) } :data
/DISCARD/ : { *(*) }
}