From: Andreas Schwab Date: Thu, 10 Jan 2008 13:09:36 +0000 (+0000) Subject: * readelf.c (is_64bit_abs_reloc): Handle R_S390_64. X-Git-Tag: sid-snapshot-20080201~222 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e819ade1fbb0faf9f23105b52dd5215d80386a7e;p=platform%2Fupstream%2Fbinutils.git * readelf.c (is_64bit_abs_reloc): Handle R_S390_64. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 0c0efda..c74bc0f 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2008-01-10 Andreas Schwab + + * readelf.c (is_64bit_abs_reloc): Handle R_S390_64. + 2008-01-09 Jakub Zawadzki PR binutils/55326 diff --git a/binutils/readelf.c b/binutils/readelf.c index 84fb290..1631a94 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -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; }