diff options
author | Andreas Jaeger <aj@suse.de> | 2001-02-26 07:50:22 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-02-26 07:50:22 +0000 |
commit | 4a73f21b0c226230f1890bda96e7b227e44669bb (patch) | |
tree | ec22553eff229ba29483079e0dde05f6422c30ec /bfd | |
parent | e1e9e218c189882084a89fdee655a0a523efbaf8 (diff) | |
download | gdb-4a73f21b0c226230f1890bda96e7b227e44669bb.zip gdb-4a73f21b0c226230f1890bda96e7b227e44669bb.tar.gz gdb-4a73f21b0c226230f1890bda96e7b227e44669bb.tar.bz2 |
2001-02-26 Andreas Jaeger <aj@suse.de>
* elf64-x86-64.c (x86_64_elf_howto_table): Fix order of entries.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 6 | ||||
-rw-r--r-- | bfd/elf64-x86-64.c | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index d9d1741..548d116 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2001-02-26 Andreas Jaeger <aj@suse.de> + + * elf64-x86-64.c (x86_64_elf_howto_table): Fix order of entries. + 2001-02-22 Timothy Wall <twall@cygnus.com> * config.bfd (targ_cpu): Add vectors for ia64-*-aix* (aka Monterey). @@ -8,7 +12,7 @@ for AIX. AIX5 requires most relocations to be dynamic (*all* binaries are somewhat similar to shared libraries). * targets.c: Add elf64_ia64_aix vectors. - + 2001-02-21 David Mosberger <davidm@hpl.hp.com> * cpu-ia64-opc.c (elf64_ia64_operands}: Fix typo: error string for diff --git a/bfd/elf64-x86-64.c b/bfd/elf64-x86-64.c index 3845cc1..88549b9 100644 --- a/bfd/elf64-x86-64.c +++ b/bfd/elf64-x86-64.c @@ -50,10 +50,10 @@ static reloc_howto_type x86_64_elf_howto_table[] = bfd_elf_generic_reloc, "R_X86_64_COPY", false, 0xffffffff, 0xffffffff, false), HOWTO(R_X86_64_GLOB_DAT, 0, 4, 64, false, 0, complain_overflow_bitfield, bfd_elf_generic_reloc, "R_X86_64_GLOB_DAT", false, MINUS_ONE, MINUS_ONE, false), - HOWTO(R_X86_64_RELATIVE, 0, 4, 64, false, 0, complain_overflow_bitfield, - bfd_elf_generic_reloc, "R_X86_64_RELATIVE", false, MINUS_ONE, MINUS_ONE, false), HOWTO(R_X86_64_JUMP_SLOT, 0, 4, 64, false, 0, complain_overflow_bitfield, bfd_elf_generic_reloc, "R_X86_64_JUMP_SLOT", false, MINUS_ONE, MINUS_ONE, false), + HOWTO(R_X86_64_RELATIVE, 0, 4, 64, false, 0, complain_overflow_bitfield, + bfd_elf_generic_reloc, "R_X86_64_RELATIVE", false, MINUS_ONE, MINUS_ONE, false), HOWTO(R_X86_64_GOTPCREL, 0, 4, 32, true,0 , complain_overflow_signed, bfd_elf_generic_reloc, "R_X86_64_GOTPCREL", false, 0xffffffff, 0xffffffff, true), HOWTO(R_X86_64_32, 0, 4, 32, false, 0, complain_overflow_unsigned, |