aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2018-10-04 14:35:12 +0200
committerAndreas Schwab <schwab@suse.de>2018-10-08 10:33:29 +0200
commit25cbdcbbc5d2d4ca834790b1d370fe5159b560de (patch)
treeb952fa26bf06b6e531ac5f4c0b8e89d1a41f0151 /binutils
parent9e1698c6186a3239479058d2abe195a384d5ee6e (diff)
downloadbinutils-25cbdcbbc5d2d4ca834790b1d370fe5159b560de.zip
binutils-25cbdcbbc5d2d4ca834790b1d370fe5159b560de.tar.gz
binutils-25cbdcbbc5d2d4ca834790b1d370fe5159b560de.tar.bz2
Handle R_RISCV_32_PCREL in readelf
* readelf.c (is_32bit_pcrel_reloc): Handle R_RISCV_32_PCREL.
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog4
-rw-r--r--binutils/readelf.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 35f71fc..6737c67 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,7 @@
+2018-10-08 Andreas Schwab <schwab@suse.de>
+
+ * readelf.c (is_32bit_pcrel_reloc): Handle R_RISCV_32_PCREL.
+
2018-10-03 Nick Clifton <nickc@redhat.com>
* po/pt.po: Updated Portuguese translation.
diff --git a/binutils/readelf.c b/binutils/readelf.c
index 91f4c12..2748664 100644
--- a/binutils/readelf.c
+++ b/binutils/readelf.c
@@ -12538,6 +12538,8 @@ is_32bit_pcrel_reloc (Filedata * filedata, unsigned int reloc_type)
return reloc_type == 26; /* R_PPC_REL32. */
case EM_PPC64:
return reloc_type == 26; /* R_PPC64_REL32. */
+ case EM_RISCV:
+ return reloc_type == 57; /* R_RISCV_32_PCREL. */
case EM_S390_OLD:
case EM_S390:
return reloc_type == 5; /* R_390_PC32. */