From d9aecc20b31932b5becfafe9388861305de97114 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Fri, 25 Sep 2020 11:27:35 +1000 Subject: rtemstoolkit/dwarf: Dump the DIE offset --- rtemstoolkit/rld-dwarf.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'rtemstoolkit/rld-dwarf.cpp') diff --git a/rtemstoolkit/rld-dwarf.cpp b/rtemstoolkit/rld-dwarf.cpp index fc4399a..d9ac6f3 100644 --- a/rtemstoolkit/rld-dwarf.cpp +++ b/rtemstoolkit/rld-dwarf.cpp @@ -1429,7 +1429,11 @@ namespace rld const char* s; ::dwarf_get_TAG_name (tag (), &s); out << level_prefix.substr (0, level_prefix.length () - 1) - << "+- " << s << std::endl; + << "+- " << s << " (" + << std::hex << std::setfill ('0') + << std::setw (8) << offset_ + << std::dec << std::setfill (' ') + << ')' << std::endl; dwarf_attribute* attributes; dwarf_signed attr_count; -- cgit v1.2.3