mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-01 13:20:25 +00:00
Fix formatting. NFC.
llvm-svn: 274426
This commit is contained in:
parent
b3a4477b13
commit
d573844a1f
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user