mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-31 18:20:12 +08:00
* readelf.c (is_64bit_abs_reloc): Handle R_S390_64.
This commit is contained in:
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user