Handle R_RISCV_32_PCREL in readelf
authorAndreas Schwab <schwab@suse.de>
Thu, 4 Oct 2018 12:35:12 +0000 (14:35 +0200)
committerAndreas Schwab <schwab@suse.de>
Mon, 8 Oct 2018 08:33:29 +0000 (10:33 +0200)
* readelf.c (is_32bit_pcrel_reloc): Handle R_RISCV_32_PCREL.

binutils/ChangeLog
binutils/readelf.c

index 35f71fcd7a04ab5a50841066b14179848cb5a11c..6737c6794c56ec6a280cc6ca384c758d1239f209 100644 (file)
@@ -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.
index 91f4c1228606f1ffded95f1a668734f53d31b8d3..2748664a30c6c550f4807c113a03ca2bfc107075 100644 (file)
@@ -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.  */