[PATCH] D28105: [DWARF] - Introduce DWARFCompression class.
Adrian Prantl via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 3 10:33:42 PST 2017
aprantl added inline comments.
================
Comment at: include/llvm/DebugInfo/DWARF/DWARFCompression.h:23
+public:
+ DWARFCompression(StringRef Name, StringRef Data, bool IsLE, bool Is64Bit);
+
----------------
Please comment the parameters here.
================
Comment at: include/llvm/DebugInfo/DWARF/DWARFCompression.h:29
+ /// Methods uncompresses section data to raw buffer provided.
+ bool uncompress(char *Buffer, size_t Size);
+
----------------
MutableArrayRef?
https://reviews.llvm.org/D28105
More information about the llvm-commits
mailing list