* readelf.c (is_64bit_abs_reloc): Return true for R_MIPS_64.
This commit is contained in:
parent
a26cc96746
commit
85a8226582
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2008-08-08 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* readelf.c (is_64bit_abs_reloc): Return true for R_MIPS_64.
|
||||
|
||||
2008-08-06 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
PR 6774
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue