Fix formatting. NFC.

llvm-svn: 274426
This commit is contained in:
Rui Ueyama 2016-07-02 06:08:44 +00:00
parent b3a4477b13
commit d573844a1f
1 changed files with 2 additions and 2 deletions

View File

@ -661,8 +661,8 @@ Symbol *BitcodeFile::createSymbol(const DenseSet<const Comdat *> &KeptComdats,
}
bool BitcodeFile::shouldSkip(uint32_t Flags) {
return (!(Flags & BasicSymbolRef::SF_Global) ||
Flags & BasicSymbolRef::SF_FormatSpecific);
return !(Flags & BasicSymbolRef::SF_Global) ||
(Flags & BasicSymbolRef::SF_FormatSpecific);
}
template <class ELFT>