summaryrefslogtreecommitdiff
path: root/binutils/readelf.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2012-06-29 07:02:35 +0000
committerAlan Modra <amodra@bigpond.net.au>2012-06-29 07:02:35 +0000
commit8aac363c960c31f5c977212ffb95b4f3f648c4db (patch)
treea496c30e647360ea2b8326f1fd2e236221e60524 /binutils/readelf.c
parentd487d729f2f58fc333c8b108bc6f653de71de90f (diff)
downloadbinutils-redhat-8aac363c960c31f5c977212ffb95b4f3f648c4db.tar.gz
* readelf.c (is_16bit_abs_reloc): Handle mn10200 reloc.
Diffstat (limited to 'binutils/readelf.c')
-rw-r--r--binutils/readelf.c3
1 files changed, 3 insertions, 0 deletions
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. */