Fix buildbot failure.

llvm-svn: 300681
This commit is contained in:
Rui Ueyama 2017-04-19 11:58:59 +00:00
parent ac377f2f11
commit 196adecc3a
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ template <class ELFT> void OutputSection::maybeCompress() {
typedef typename ELFT::Chdr Elf_Chdr;
// Compress only DWARF debug sections.
if (!Config->CompressDebugSections || !(Flags & SHF_ALLOC) ||
if (!Config->CompressDebugSections || (Flags & SHF_ALLOC) ||
!Name.startswith(".debug_"))
return;