* readelf.c (is_64bit_abs_reloc): Return true for R_MIPS_64.

This commit is contained in:
Alan Modra
2008-08-08 08:08:33 +00:00
parent a26cc96746
commit 85a8226582
2 changed files with 6 additions and 0 deletions

View File

@@ -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;
}