diff options
author | Mark Wielaard <mark@klomp.org> | 2020-09-23 16:48:35 +0200 |
---|---|---|
committer | Mark Wielaard <mark@klomp.org> | 2020-09-24 23:13:13 +0200 |
commit | debd1a62c4d250a6257e9018d9f9c7355edcdf8b (patch) | |
tree | 58b3c683d7c21e0a50f568a3a7920af96d9a49da /binutils/dwarf.c | |
parent | d7b477c541bd31045483f37345727bd8335a052a (diff) | |
download | gdb-debd1a62c4d250a6257e9018d9f9c7355edcdf8b.zip gdb-debd1a62c4d250a6257e9018d9f9c7355edcdf8b.tar.gz gdb-debd1a62c4d250a6257e9018d9f9c7355edcdf8b.tar.bz2 |
readelf: Show Unit Type for DWARF5
binutils/ChangeLog:
* dwarf.c (process_debug_info): Print Unit Type for DWARF5.
* testsuite/binutils-all/dw5.W: Adjust expected output.
* testsuite/binutils-all/dwarf-attributes.W: Likewise.
gas/ChangeLog:
* testsuite/gas/elf/dwarf-5-cu.d: Adjust expected output.
Diffstat (limited to 'binutils/dwarf.c')
-rw-r--r-- | binutils/dwarf.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/binutils/dwarf.c b/binutils/dwarf.c index 9e98794..5f32e95 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -3361,6 +3361,10 @@ process_debug_info (struct dwarf_section * section, dwarf_vmatoa ("x", compunit.cu_length), offset_size == 8 ? "64-bit" : "32-bit"); printf (_(" Version: %d\n"), compunit.cu_version); + if (compunit.cu_version >= 5) + printf (_(" Unit Type: %s (%x)\n"), + get_DW_UT_name (compunit.cu_unit_type) ?: "???", + compunit.cu_unit_type); printf (_(" Abbrev Offset: 0x%s\n"), dwarf_vmatoa ("x", compunit.cu_abbrev_offset)); printf (_(" Pointer Size: %d\n"), compunit.cu_pointer_size); |