From 95d660c12b086fb4c3d8e749ba1e297c13e147dc Mon Sep 17 00:00:00 2001 From: matt Date: Tue, 18 Mar 2014 23:41:02 +0000 Subject: [PATCH] Make readelf know what the vax pcrel32 reloc number is. --- external/gpl3/binutils/dist/binutils/readelf.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/external/gpl3/binutils/dist/binutils/readelf.c b/external/gpl3/binutils/dist/binutils/readelf.c index a5bf612e77eb..8c7941adfe76 100644 --- a/external/gpl3/binutils/dist/binutils/readelf.c +++ b/external/gpl3/binutils/dist/binutils/readelf.c @@ -10020,6 +10020,8 @@ is_32bit_pcrel_reloc (unsigned int reloc_type) case EM_L1OM: case EM_K1OM: return reloc_type == 2; /* R_X86_64_PC32. */ + case EM_VAX: + return reloc_type == 4; /* R_VAX_PCREL32. */ case EM_XTENSA_OLD: case EM_XTENSA: return reloc_type == 14; /* R_XTENSA_32_PCREL. */