aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-i386
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2005-08-03 16:30:34 +0000
committerH.J. Lu <hjl.tools@gmail.com>2005-08-03 16:30:34 +0000
commitb0360d8cfa52ee52bbc76ca90f4caf1f9cb3f64f (patch)
tree7b14977d55f2dbb3c28519b5245ee025aa0cb287 /ld/testsuite/ld-i386
parent761e0242e43f151cf3238a6ad3c13dd58d75bd30 (diff)
downloadfsf-binutils-gdb-b0360d8cfa52ee52bbc76ca90f4caf1f9cb3f64f.zip
fsf-binutils-gdb-b0360d8cfa52ee52bbc76ca90f4caf1f9cb3f64f.tar.gz
fsf-binutils-gdb-b0360d8cfa52ee52bbc76ca90f4caf1f9cb3f64f.tar.bz2
bfd/
2005-08-03 H.J. Lu <hongjiu.lu@intel.com> * elf32-i386.c (elf_howto_table): Undo the overflow change for R_386_PC16 made on 2005-07-18. * elf64-x86-64.c (x86_64_elf_howto_table): Undo the overflow change for R_X86_64_PC16 made on 2005-07-18. ld/testsuite/ 2005-08-03 H.J. Lu <hongjiu.lu@intel.com> * ld-i386/pcrel16.d: Updated. * ld-i386/pcrel16.s: Likewise. * ld-x86-64/pcrel16.d: Likewise.
Diffstat (limited to 'ld/testsuite/ld-i386')
-rw-r--r--ld/testsuite/ld-i386/pcrel16.d15
-rw-r--r--ld/testsuite/ld-i386/pcrel16.s18
2 files changed, 21 insertions, 12 deletions
diff --git a/ld/testsuite/ld-i386/pcrel16.d b/ld/testsuite/ld-i386/pcrel16.d
index 1e8f182..0c438a9 100644
--- a/ld/testsuite/ld-i386/pcrel16.d
+++ b/ld/testsuite/ld-i386/pcrel16.d
@@ -1,3 +1,14 @@
#name: PCREL16 overflow
-#ld:
-#error: .*relocation truncated to fit: R_386_PC16 .*
+#ld: -Ttext 0x0
+#objdump: -drj.text -m i8086
+
+.*: +file format elf32-i386
+
+Disassembly of section .text:
+
+0+ <_start>:
+ ...
+ 420: cd 42[ ]+int \$0x42
+ 422: ca 02 00[ ]+lret \$0x2
+ ...
+ f065: e9 b8 13[ ]+jmp 420 <_start\+0x420>
diff --git a/ld/testsuite/ld-i386/pcrel16.s b/ld/testsuite/ld-i386/pcrel16.s
index 269d9ca..d68a6c6 100644
--- a/ld/testsuite/ld-i386/pcrel16.s
+++ b/ld/testsuite/ld-i386/pcrel16.s
@@ -1,11 +1,9 @@
- .text
- .code16
- .global _start, fwd
+ .code16
+ .text
+ .globl _start
_start:
- jpo fwd
- .rept 2500
- testl $0x12345678, %ss:0x76543210(,%eax,4)
- .endr
-fwd:
- leave
- ret
+ .org 0x420
+ int $0x42
+ lret $2
+ .org 0xf065
+ jmp _start+((0x42) << 4)