m68hc11/12 readelf support

Supports relocation of debug sections.

	* readelf.c (is_32bit_abs_reloc): Add R_M68HC11_32.
This commit is contained in:
Alan Modra 2016-01-17 12:13:30 +10:30
parent 4e566232a7
commit adec12c116
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2016-01-17 Alan Modra <amodra@gmail.com>
* readelf.c (is_32bit_abs_reloc): Add R_M68HC11_32.
2016-01-01 Alan Modra <amodra@gmail.com>
Update year range in copyright notice of all files.

View File

@ -11404,6 +11404,9 @@ is_32bit_abs_reloc (unsigned int reloc_type)
return reloc_type == 3; /* R_M32C_32. */
case EM_M32R:
return reloc_type == 34; /* R_M32R_32_RELA. */
case EM_68HC11:
case EM_68HC12:
return reloc_type == 6; /* R_M68HC11_32. */
case EM_MCORE:
return reloc_type == 1; /* R_MCORE_ADDR32. */
case EM_CYGNUS_MEP: