[Lldb-commits] [lldb] [LLDB] Impove ObjectFileELF's .dynamic parsing and usage. (PR #101237)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Wed Aug 7 04:12:11 PDT 2024
================
@@ -3802,9 +3817,9 @@ std::optional<DataExtractor> ObjectFileELF::GetDynstrData() {
// the section.
if (Section *dynstr =
section_list->FindSectionByID(header->sh_link).get()) {
- DataExtractor data;
+ DataExtractor data;
if (ReadSectionData(dynstr, data))
- return data;
+ return data;
----------------
labath wrote:
It looks like something went wrong with the formatting here.
https://github.com/llvm/llvm-project/pull/101237
More information about the lldb-commits
mailing list