diff options
author | John Darrington <john@darrington.wattle.id.au> | 2018-05-10 12:51:42 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2018-05-10 12:51:42 +0100 |
commit | 637b19704cf8325875de8df4f8b000197d261e3b (patch) | |
tree | c865bb5e04c4a5ce8e298cda2d5506c913f175a2 /binutils/readelf.c | |
parent | 8727de56b0dbe25b7b4a3bd04f72ac41992463ed (diff) | |
download | gdb-637b19704cf8325875de8df4f8b000197d261e3b.zip gdb-637b19704cf8325875de8df4f8b000197d261e3b.tar.gz gdb-637b19704cf8325875de8df4f8b000197d261e3b.tar.bz2 |
Add support for detecting Freescale S12Z binaries in readelf.
* include/elf/common.h (EM_S12Z): New macro
* binutils/readelf.c (get_machine_name): EM_S12Z - handle new case.
Diffstat (limited to 'binutils/readelf.c')
-rw-r--r-- | binutils/readelf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/binutils/readelf.c b/binutils/readelf.c index 0c676f2..6a9c51d 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -2495,6 +2495,7 @@ get_machine_name (unsigned e_machine) case EM_CYGNUS_MEP: return "Toshiba MeP Media Engine"; case EM_ADAPTEVA_EPIPHANY: return "Adapteva EPIPHANY"; case EM_CYGNUS_FRV: return "Fujitsu FR-V"; + case EM_S12Z: return "Freescale S12Z"; default: snprintf (buff, sizeof (buff), _("<unknown>: 0x%x"), e_machine); |