[PATCH] D21503: [llvm-dwarfdump] - Teach dwarfdump to dump gdb-index section.
Davide Italiano via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 22 12:35:05 PDT 2016
davide added inline comments.
================
Comment at: include/llvm/DebugInfo/DWARF/DWARFContext.h:227
@@ -223,2 +226,3 @@
virtual StringRef getTUIndexSection() = 0;
+ virtual StringRef getGdbIndexSection() = 0;
----------------
Still unsorted.
================
Comment at: include/llvm/DebugInfo/DWARF/DWARFContext.h:280
@@ -275,2 +279,3 @@
StringRef TUIndexSection;
+ StringRef GdbIndexSection;
----------------
Still unsorted.
================
Comment at: include/llvm/DebugInfo/DWARF/DWARFContext.h:327
@@ -321,2 +326,3 @@
StringRef getTUIndexSection() override { return TUIndexSection; }
+ StringRef getGdbIndexSection() override { return GdbIndexSection; }
};
----------------
Still unsorted.
http://reviews.llvm.org/D21503
More information about the llvm-commits
mailing list