1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 13:11:39 +01:00

[AST] Fix a whitespace typo [NFC]

llvm-svn: 340384
This commit is contained in:
Philip Reames 2018-08-22 03:36:42 +00:00
parent bc41d290af
commit 945d43be81

View File

@ -259,7 +259,7 @@ Instruction* AliasSet::getUniqueInstruction() {
if (size() != 0)
// Can't track source of pointer, might be many instruction
return nullptr;
if (1 != UnknownInsts.size())
if (1 != UnknownInsts.size())
return nullptr;
return cast<Instruction>(UnknownInsts[0]);
}