[PATCH 3/3] rtemstoolkit/dwarf: Dump the DIE offset
chrisj at rtems.org
chrisj at rtems.org
Fri Sep 25 01:29:11 UTC 2020
From: Chris Johns <chrisj at rtems.org>
---
rtemstoolkit/rld-dwarf.cpp | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
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;
--
2.24.1
More information about the devel
mailing list