Add () for clarity. NFC.

llvm-svn: 283556
This commit is contained in:
Rafael Espindola 2016-10-07 14:23:28 +00:00
parent f74fc60a7d
commit 88b9d66d4a
1 changed files with 1 additions and 1 deletions

View File

@ -582,7 +582,7 @@ template <class ELFT> void MergeInputSection<ELFT>::splitIntoPieces() {
else
this->Pieces = splitNonStrings(Data, EntSize);
if (Config->GcSections && this->getSectionHdr()->sh_flags & SHF_ALLOC)
if (Config->GcSections && (this->getSectionHdr()->sh_flags & SHF_ALLOC))
for (uintX_t Off : LiveOffsets)
this->getSectionPiece(Off)->Live = true;
}