From 8aac363c960c31f5c977212ffb95b4f3f648c4db Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Fri, 29 Jun 2012 07:02:35 +0000 Subject: * readelf.c (is_16bit_abs_reloc): Handle mn10200 reloc. --- binutils/ChangeLog | 4 ++++ binutils/readelf.c | 3 +++ 2 files changed, 7 insertions(+) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 105a45d6f4..c864bc4591 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2012-06-29 Alan Modra + + * readelf.c (is_16bit_abs_reloc): Handle mn10200 reloc. + 2012-06-12 Tom Tromey * dwarf-mode.el: Add final comment. Bump version. diff --git a/binutils/readelf.c b/binutils/readelf.c index 527edf2a6e..b1bacfd722 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -10093,6 +10093,9 @@ is_16bit_abs_reloc (unsigned int reloc_type) case EM_XC16X: case EM_C166: return reloc_type == 2; /* R_XC16C_ABS_16. */ + case EM_CYGNUS_MN10200: + case EM_MN10200: + return reloc_type == 2; /* R_MN10200_16. */ case EM_CYGNUS_MN10300: case EM_MN10300: return reloc_type == 2; /* R_MN10300_16. */ -- cgit v1.2.1