* readelf.c (is_64bit_abs_reloc): Handle R_S390_64.

This commit is contained in:
Andreas Schwab 2008-01-10 13:09:36 +00:00
parent d5465ba2e1
commit e819ade1fb
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2008-01-10 Andreas Schwab <schwab@suse.de>
* readelf.c (is_64bit_abs_reloc): Handle R_S390_64.
2008-01-09 Jakub Zawadzki <darkjames@darkjames.ath.cx>
PR binutils/55326

View file

@ -8137,6 +8137,9 @@ is_64bit_abs_reloc (unsigned int reloc_type)
return reloc_type == 54; /* R_SPARC_UA64. */
case EM_X86_64:
return reloc_type == 1; /* R_X86_64_64. */
case EM_S390_OLD:
case EM_S390:
return reloc_type == 22; /* R_S390_64 */
default:
return FALSE;
}