From: Alan Modra Date: Fri, 8 Aug 2008 08:08:33 +0000 (+0000) Subject: * readelf.c (is_64bit_abs_reloc): Return true for R_MIPS_64. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=85a8226582f922ebf485e6969e664ce03e6c52f3;p=binutils-gdb.git * readelf.c (is_64bit_abs_reloc): Return true for R_MIPS_64. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 443af281101..9cb36ce386d 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2008-08-08 Alan Modra + + * readelf.c (is_64bit_abs_reloc): Return true for R_MIPS_64. + 2008-08-06 Alan Modra PR 6774 diff --git a/binutils/readelf.c b/binutils/readelf.c index c260e9ab3a7..ce1203e2ed2 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -8184,6 +8184,8 @@ is_64bit_abs_reloc (unsigned int reloc_type) case EM_S390_OLD: case EM_S390: return reloc_type == 22; /* R_S390_64 */ + case EM_MIPS: + return reloc_type == 18; /* R_MIPS_64 */ default: return FALSE; }