From f93836e0ec334094164b1e17f71a228ca4d5383c Mon Sep 17 00:00:00 2001 From: George Rimar Date: Fri, 5 May 2017 16:13:10 +0000 Subject: [PATCH] [llvm-dwarfdump] - Add comment for maybeDecompress(). NFC. Addresses post commit review comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@302249 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/DebugInfo/DWARF/DWARFContext.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/llvm/DebugInfo/DWARF/DWARFContext.h b/include/llvm/DebugInfo/DWARF/DWARFContext.h index d42c477e7de..3fae8b44143 100644 --- a/include/llvm/DebugInfo/DWARF/DWARFContext.h +++ b/include/llvm/DebugInfo/DWARF/DWARFContext.h @@ -310,6 +310,8 @@ class DWARFContextInMemory : public DWARFContext { StringRef *MapSectionToMember(StringRef Name); + /// If Sec is compressed section, decompresses and updates its contents + /// provided by Data. Otherwise leaves it unchanged. Error maybeDecompress(const object::SectionRef &Sec, StringRef Name, StringRef &Data); -- 2.50.1