Browse Source
PR ld/1467 * ld-elf/orphan.d: New file. * ld-elf/orphan.ld: Likewise. * ld-elf/orphan.s: Likewise.readline_5_1-import-branch
4 changed files with 36 additions and 0 deletions
@ -0,0 +1,12 @@ |
|||
#source: orphan.s |
|||
#ld: -T orphan.ld |
|||
#readelf: -S --wide |
|||
|
|||
#... |
|||
\[[ 0-9]+\] \.text[ \t]+PROGBITS[ \t0-9a-f]+AX.* |
|||
\[[ 0-9]+\] \.notbad[ \t]+PROGBITS[ \t0-9a-f]+A.* |
|||
\[[ 0-9]+\] \.data[ \t]+PROGBITS[ \t0-9a-f]+WA.* |
|||
#... |
|||
\[[ 0-9]+\] \.note[ \t]+NOTE[ \t0-9a-f]+A.* |
|||
\[[ 0-9]+\] \.note.bar[ \t]+NOTE[ \t0-9a-f]+A.* |
|||
#pass |
|||
@ -0,0 +1,7 @@ |
|||
SECTIONS |
|||
{ |
|||
.text : { *(.text) } |
|||
.data : { *(.data) } |
|||
.bss : { *(.bss) *(COMMON) } |
|||
.note : { *(.note) } |
|||
} |
|||
@ -0,0 +1,10 @@ |
|||
.text |
|||
.long 0 |
|||
.data |
|||
.long 0 |
|||
.section .note,"a","note" |
|||
.long 0 |
|||
.section .notbad,"a","progbits" |
|||
.long 0 |
|||
.section .note.bar,"a","note" |
|||
.long 0 |
|||
Loading…
Reference in new issue