* readelf.c (is_64bit_abs_reloc): Handle R_S390_64.
[deliverable/binutils-gdb.git] / binutils / readelf.c
index 84fb29054d15a07c84c7e5ea00e42958f5c14814..1631a94dcccc9366e7a1731bdbd2d42fcb196198 100644 (file)
@@ -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;
     }
This page took 0.023793 seconds and 4 git commands to generate.