[PATCH] D51841: [llvm-objcopy] Dwarf decompression support.
Alexander Shaposhnikov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Sep 10 12:32:30 PDT 2018
alexshap added inline comments.
================
Comment at: tools/llvm-objcopy/Object.h:366
+ : SectionBase(Sec), DoDecompression(DoDecompression) {
+ if (!DoDecompression)
+ return;
----------------
I'm looking at the changes in OwnedDataSection, tbh, i'm not a big fan of them.
It looks like OwnedDataSection is not the right place for them (now we have a bool flag and a new branch everywhere + some details (like ".zdebug") have leaked into it).
Repository:
rL LLVM
https://reviews.llvm.org/D51841
More information about the llvm-commits
mailing list