Browse Source
2005-07-18 Jan Beulich <jbeulich@novell.com> * elf32-i386.c (elf_howto_table): Adjust overflow complaint handler for R_386_PC16. * elf64-x86-64.c (x86_64_elf_howto_table): Adjust overflow complaint handler for R_X86_64_PC16, R_X86_64_8, and R_X86_64_DTPOFF. ld/testsuite/ 2005-07-18 Jan Beulich <jbeulich@novell.com> * ld-i386/abs.s, ld-i386/zero.s, ld-i386/abs.d, ld-x86-64/abs.d, ld-i386/pcrel16.s, ld-i386/pcrel16.d, ld-x86-64/pcrel16.d, ld-i386/pcrel8.s, ld-i386/pcrel8.d, ld-x86-64/pcrel8.d: New. * ld-i386/i386.exp, ld-x86-64/x86-64.exp: Run new tests.gdb-csl-arm-20051020-branch
16 changed files with 92 additions and 4 deletions
@ -0,0 +1,10 @@ |
|||
#name: Absolute non-overflowing relocs |
|||
#source: abs.s |
|||
#source: zero.s |
|||
#ld: |
|||
#objdump: -rs |
|||
|
|||
.*: file format .* |
|||
|
|||
Contents of section \.text: |
|||
[ ][0-9a-f]+ c800fff0 c8000110 c9c3.* |
|||
@ -0,0 +1,8 @@ |
|||
.text |
|||
.global _start |
|||
_start: |
|||
enter $zero + 0xff00, $zero + 0xf0 |
|||
enter $zero - 0xff00, $zero - 0xf0 |
|||
leave |
|||
ret |
|||
.p2align 4,0x90 |
|||
@ -0,0 +1,3 @@ |
|||
#name: PCREL16 overflow |
|||
#ld: |
|||
#error: .*relocation truncated to fit: R_386_PC16 .* |
|||
@ -0,0 +1,11 @@ |
|||
.text |
|||
.code16 |
|||
.global _start, fwd |
|||
_start: |
|||
jpo fwd |
|||
.rept 2500 |
|||
testl $0x12345678, %ss:0x76543210(,%eax,4) |
|||
.endr |
|||
fwd: |
|||
leave |
|||
ret |
|||
@ -0,0 +1,3 @@ |
|||
#name: PCREL8 overflow |
|||
#ld: |
|||
#error: .*relocation truncated to fit: R_386_PC8 .* |
|||
@ -0,0 +1,11 @@ |
|||
.text |
|||
.code16 |
|||
.global _start, fwd |
|||
_start: |
|||
jcxz fwd |
|||
.rept 10 |
|||
testl $0x12345678, %ss:0x76543210(,%eax,4) |
|||
.endr |
|||
fwd: |
|||
leave |
|||
ret |
|||
@ -0,0 +1,2 @@ |
|||
.global zero |
|||
.equiv zero, 0 |
|||
@ -0,0 +1,10 @@ |
|||
#name: Absolute non-overflowing relocs |
|||
#source: ../ld-i386/abs.s |
|||
#source: ../ld-i386/zero.s |
|||
#ld: |
|||
#objdump: -rs |
|||
|
|||
.*: file format .* |
|||
|
|||
Contents of section \.text: |
|||
[ ][0-9a-f]+ c800fff0 c8000110 c9c3.* |
|||
@ -0,0 +1,4 @@ |
|||
#name: PCREL16 overflow |
|||
#source: ../ld-i386/pcrel16.s |
|||
#ld: |
|||
#error: .*relocation truncated to fit: R_X86_64_PC16 .* |
|||
@ -0,0 +1,4 @@ |
|||
#name: PCREL8 overflow |
|||
#source: ../ld-i386/pcrel8.s |
|||
#ld: |
|||
#error: .*relocation truncated to fit: R_X86_64_PC8 .* |
|||
Loading…
Reference in new issue