summaryrefslogtreecommitdiffstats
path: root/usr.bin/elfdump
diff options
context:
space:
mode:
authoremaste <emaste@FreeBSD.org>2015-09-23 00:32:38 +0000
committeremaste <emaste@FreeBSD.org>2015-09-23 00:32:38 +0000
commit3ef25e9daf8ff42f2a3c7781707a03823ff8eae6 (patch)
tree201aff74eb904ac5df2bc9bf83033d56535b9599 /usr.bin/elfdump
parentb17d09da889fe2ed4248d0b8ac4c34cabb9ff907 (diff)
downloadFreeBSD-src-3ef25e9daf8ff42f2a3c7781707a03823ff8eae6.zip
FreeBSD-src-3ef25e9daf8ff42f2a3c7781707a03823ff8eae6.tar.gz
elfdump: report MIPS ELF section type SHT_MIPS_REGINFO
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'usr.bin/elfdump')
-rw-r--r--usr.bin/elfdump/elfdump.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/elfdump/elfdump.c b/usr.bin/elfdump/elfdump.c
index 33cc9c4..040b5e7 100644
--- a/usr.bin/elfdump/elfdump.c
+++ b/usr.bin/elfdump/elfdump.c
@@ -379,6 +379,7 @@ sh_types(uint64_t machine, uint64_t sht) {
break;
case EM_MIPS:
switch (sht) {
+ case SHT_MIPS_REGINFO: return "SHT_MIPS_REGINFO";
case SHT_MIPS_OPTIONS: return "SHT_MIPS_OPTIONS";
case SHT_MIPS_ABIFLAGS: return "SHT_MIPS_ABIFLAGS";
}
OpenPOWER on IntegriCloud