* readelf.c (is_16bit_abs_reloc): Handle mn10200 reloc.
This commit is contained in:
parent
1ce1cefd3d
commit
e63734a344
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2012-06-29 Alan Modra <amodra@gmail.com>
|
||||
|
||||
* readelf.c (is_16bit_abs_reloc): Handle mn10200 reloc.
|
||||
|
||||
2012-06-12 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* dwarf-mode.el: Add final comment. Bump version.
|
||||
|
|
|
@ -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. */
|
||||
|
|
Loading…
Reference in a new issue