From b61decd63aafad28691643cef2104ec41b23e6db Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Mon, 17 Aug 2009 08:34:37 +0000 Subject: [PATCH] * readelf.c (is_32bit_abs_reloc): Treat R_PARISC_SECREL32 as a 32-bit absolute reloc for the purposes of processing debug sections. --- binutils/ChangeLog | 6 ++++++ binutils/readelf.c | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index ff1ff2530b..0dca4bacff 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,9 @@ +2009-08-17 Nick Clifton + + * readelf.c (is_32bit_abs_reloc): Treat R_PARISC_SECREL32 as a + 32-bit absolute reloc for the purposes of processing debug + sections. + 2009-08-10 Daniel Gutson * readelf.c (get_arm_section_type_name): Added support for diff --git a/binutils/readelf.c b/binutils/readelf.c index f9cab0c282..a8c16914c3 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -7939,7 +7939,8 @@ is_32bit_abs_reloc (unsigned int reloc_type) case EM_OR32: return reloc_type == 1; /* R_OR32_32. */ case EM_PARISC: - return reloc_type == 1; /* R_PARISC_DIR32. */ + return (reloc_type == 1 /* R_PARISC_DIR32. */ + || reloc_type == 41); /* R_PARISC_SECREL32. */ case EM_PJ: case EM_PJ_OLD: return reloc_type == 1; /* R_PJ_DATA_DIR32. */ -- 2.11.0