Browse Source
* ld-powerpc/vxworks-relax.s, ld-powerpc/vxworks-relax.rd: New. * ld-powerpc/vxworks1.ld: Add .pad and .far input sections. * ld-powerpc/vxworks1.rd: Correct regexp for undefined symbols.cgen-1_1-branch
8 changed files with 83 additions and 11 deletions
@ -0,0 +1,9 @@ |
|||
|
|||
Relocation section '.rela.text' at offset 0x4010150 contains 6 entries: |
|||
Offset Info Type Sym.Value Sym. Name \+ Addend |
|||
00080012 00000106 R_PPC_ADDR16_HA 00080000 .text \+ 4000020 |
|||
00080016 00000104 R_PPC_ADDR16_LO 00080000 .text \+ 4000020 |
|||
00080006 00000106 R_PPC_ADDR16_HA 00080000 .text \+ 4000020 |
|||
0008000a 00000104 R_PPC_ADDR16_LO 00080000 .text \+ 4000020 |
|||
0408002a 00000306 R_PPC_ADDR16_HA 00080000 _start \+ 0 |
|||
0408002e 00000304 R_PPC_ADDR16_LO 00080000 _start \+ 0 |
|||
@ -0,0 +1,13 @@ |
|||
.globl _start |
|||
_start: |
|||
bl elsewhere |
|||
lis 9,elsewhere@ha |
|||
la 0,elsewhere@l(9) |
|||
|
|||
|
|||
.section .far,"ax",@progbits |
|||
elsewhere: |
|||
bl _start |
|||
|
|||
.section .pad |
|||
.space 0x4000000 |
|||
Loading…
Reference in new issue