From 6a6185fd78a61eb2a2f05beefe17b67feed86de0 Mon Sep 17 00:00:00 2001 From: George Rimar Date: Tue, 24 May 2016 09:44:44 +0000 Subject: Revert r270540 "[llvm-dwarfdump] - Teach dwarfdump to decompress debug sections in zlib style." it broked bot: http://lab.llvm.org:8011/builders/clang-s390x-linux/builds/5036 llvm-svn: 270541 --- llvm/lib/Object/MachOObjectFile.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'llvm/lib/Object/MachOObjectFile.cpp') diff --git a/llvm/lib/Object/MachOObjectFile.cpp b/llvm/lib/Object/MachOObjectFile.cpp index d7ec3e5..760249f 100644 --- a/llvm/lib/Object/MachOObjectFile.cpp +++ b/llvm/lib/Object/MachOObjectFile.cpp @@ -653,10 +653,6 @@ uint64_t MachOObjectFile::getSectionAlignment(DataRefImpl Sec) const { return uint64_t(1) << Align; } -bool MachOObjectFile::isSectionCompressed(DataRefImpl Sec) const { - return false; -} - bool MachOObjectFile::isSectionText(DataRefImpl Sec) const { uint32_t Flags = getSectionFlags(this, Sec); return Flags & MachO::S_ATTR_PURE_INSTRUCTIONS; -- cgit v1.1