summaryrefslogtreecommitdiff
path: root/elfdump
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2015-05-27 12:57:31 +0000
committerEd Maste <emaste@FreeBSD.org>2015-05-27 12:57:31 +0000
commitd8a0b3e7b110453a0d5558b4c1128a071b846d3f (patch)
treeda6ab4db6267338140db87bda725eb9fa8c60b25 /elfdump
parentd400e40862bdee2fea9afc4b27b3391807a9050c (diff)
downloadsrc-test2-d8a0b3e7b110453a0d5558b4c1128a071b846d3f.tar.gz
src-test2-d8a0b3e7b110453a0d5558b4c1128a071b846d3f.zip
Notes
Diffstat (limited to 'elfdump')
-rw-r--r--elfdump/elfdump.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/elfdump/elfdump.c b/elfdump/elfdump.c
index aee56b1ccfc7..e4e565bdd5c5 100644
--- a/elfdump/elfdump.c
+++ b/elfdump/elfdump.c
@@ -50,7 +50,7 @@
#include "_elftc.h"
-ELFTC_VCSID("$Id: elfdump.c 3189 2015-04-20 17:02:01Z emaste $");
+ELFTC_VCSID("$Id: elfdump.c 3198 2015-05-14 18:36:19Z emaste $");
#if defined(ELFTC_NEED_ELF_NOTE_DEFINITION)
#include "native-elf-format.h"
@@ -240,6 +240,7 @@ e_machines(unsigned int mach)
case EM_386: return "EM_386";
case EM_68K: return "EM_68K";
case EM_88K: return "EM_88K";
+ case EM_IAMCU: return "EM_IAMCU";
case EM_860: return "EM_860";
case EM_MIPS: return "EM_MIPS";
case EM_PPC: return "EM_PPC";
@@ -411,6 +412,7 @@ r_type(unsigned int mach, unsigned int type)
switch(mach) {
case EM_NONE: return "";
case EM_386:
+ case EM_IAMCU:
switch(type) {
case 0: return "R_386_NONE";
case 1: return "R_386_32";