diff options
author | emaste <emaste@FreeBSD.org> | 2015-09-22 01:45:43 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2015-09-22 01:45:43 +0000 |
commit | 0f9952051e23d7c5dce610c0e45e93a4fe5ca34e (patch) | |
tree | 6bb72438dbd07736fb1d46b82b4055f0a97c2c51 | |
parent | d58878205458ab4eabf86cb85a087b1b4ce2b097 (diff) | |
download | FreeBSD-src-0f9952051e23d7c5dce610c0e45e93a4fe5ca34e.zip FreeBSD-src-0f9952051e23d7c5dce610c0e45e93a4fe5ca34e.tar.gz |
elfdump: report MIPS-specific section type SHT_MIPS_ABIFLAGS
Sponsored by: The FreeBSD Foundation
-rw-r--r-- | usr.bin/elfdump/elfdump.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/elfdump/elfdump.c b/usr.bin/elfdump/elfdump.c index 2147fcb..33cc9c4 100644 --- a/usr.bin/elfdump/elfdump.c +++ b/usr.bin/elfdump/elfdump.c @@ -380,6 +380,7 @@ sh_types(uint64_t machine, uint64_t sht) { case EM_MIPS: switch (sht) { case SHT_MIPS_OPTIONS: return "SHT_MIPS_OPTIONS"; + case SHT_MIPS_ABIFLAGS: return "SHT_MIPS_ABIFLAGS"; } break; } |