diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2013-01-15 17:30:49 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2013-01-15 17:30:49 +0000 |
commit | 1e5364517958c0d6000a11df1a6255937f4364eb (patch) | |
tree | 562cc7ca6ec7cf5ce97879f9749b7019001e829e /bfd/elf64-x86-64.c | |
parent | 22fc223eb85a55597e35a0e8acd831ff661d2723 (diff) | |
download | gdb-1e5364517958c0d6000a11df1a6255937f4364eb.zip gdb-1e5364517958c0d6000a11df1a6255937f4364eb.tar.gz gdb-1e5364517958c0d6000a11df1a6255937f4364eb.tar.bz2 |
Define R_X86_64_standard with R_X86_64_RELATIVE64
* elf64-x86-64.c (R_X86_64_standard): Replace R_X86_64_IRELATIVE
with R_X86_64_RELATIVE64.
Diffstat (limited to 'bfd/elf64-x86-64.c')
-rw-r--r-- | bfd/elf64-x86-64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elf64-x86-64.c b/bfd/elf64-x86-64.c index 0d23cc3..3f45776 100644 --- a/bfd/elf64-x86-64.c +++ b/bfd/elf64-x86-64.c @@ -173,7 +173,7 @@ static reloc_howto_type x86_64_elf_howto_table[] = R_X86_64_standard counts the number up to this point, and R_X86_64_vt_offset is the value to subtract from a reloc type of R_X86_64_GNU_VT* to form an index into this table. */ -#define R_X86_64_standard (R_X86_64_IRELATIVE + 1) +#define R_X86_64_standard (R_X86_64_RELATIVE64 + 1) #define R_X86_64_vt_offset (R_X86_64_GNU_VTINHERIT - R_X86_64_standard) /* GNU extension to record C++ vtable hierarchy. */ |