diff options
author | Puyan Lotfi <puyan@puyan.org> | 2018-09-04 01:58:32 +0000 |
---|---|---|
committer | Puyan Lotfi <puyan@puyan.org> | 2018-09-04 01:58:32 +0000 |
commit | bd203e03f89a0664c22c7b9ca74fd1b2fdf6f0c0 (patch) | |
tree | fede69ce5e657fe70bdbe76d76c3547dd94d14a8 /llvm/tools/llvm-objcopy/Object.cpp | |
parent | a7a5816b965d31cf3b1fb08e61a144b6a27bb5f7 (diff) | |
download | bcm5719-llvm-bd203e03f89a0664c22c7b9ca74fd1b2fdf6f0c0.tar.gz bcm5719-llvm-bd203e03f89a0664c22c7b9ca74fd1b2fdf6f0c0.zip |
[NFC][llvm-objcopy] clang-formating Object.cpp
llvm-svn: 341344
Diffstat (limited to 'llvm/tools/llvm-objcopy/Object.cpp')
-rw-r--r-- | llvm/tools/llvm-objcopy/Object.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/tools/llvm-objcopy/Object.cpp b/llvm/tools/llvm-objcopy/Object.cpp index e7ffb1eae11..3893c0e2c53 100644 --- a/llvm/tools/llvm-objcopy/Object.cpp +++ b/llvm/tools/llvm-objcopy/Object.cpp @@ -171,8 +171,7 @@ void ELFSectionWriter<ELFT>::visit(const CompressedSection &Sec) { CompressedSection::CompressedSection(const SectionBase &Sec, DebugCompressionType CompressionType) : SectionBase(Sec), CompressionType(CompressionType), - DecompressedSize(Sec.OriginalData.size()), - DecompressedAlign(Sec.Align) { + DecompressedSize(Sec.OriginalData.size()), DecompressedAlign(Sec.Align) { if (Error E = zlib::compress( StringRef(reinterpret_cast<const char *>(OriginalData.data()), |