[AArch64] Recognize R_AARCH64_P32_ABS32 as 32-bit relocation in readelf

binutils/
	* readelf.c (is_32bit_abs_reloc): Recognize R_AARCH64_P32_ABS32.
This commit is contained in:
Jiong Wang 2016-12-13 12:52:59 +00:00
parent 971f1d27d2
commit 9282b95ab7
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2016-12-13 Jiong Wang <jiong.wang@arm.com>
* readelf.c (is_32bit_abs_reloc): Recognize R_AARCH64_P32_ABS32.
2016-12-13 Nick Clifton <nickc@redhat.com>
* MAINTAINERS (Past Maintainers): New section. Move Mark

View File

@ -11731,7 +11731,8 @@ is_32bit_abs_reloc (unsigned int reloc_type)
case EM_960:
return reloc_type == 2; /* R_960_32. */
case EM_AARCH64:
return reloc_type == 258; /* R_AARCH64_ABS32 */
return (reloc_type == 258
|| reloc_type == 1); /* R_AARCH64_ABS32 || R_AARCH64_P32_ABS32 */
case EM_ADAPTEVA_EPIPHANY:
return reloc_type == 3;
case EM_ALPHA: