[AST] Fix a whitespace typo [NFC]
authorPhilip Reames <listmail@philipreames.com>
Wed, 22 Aug 2018 03:36:42 +0000 (03:36 +0000)
committerPhilip Reames <listmail@philipreames.com>
Wed, 22 Aug 2018 03:36:42 +0000 (03:36 +0000)
llvm-svn: 340384

llvm/lib/Analysis/AliasSetTracker.cpp

index a9b01df..e5e3ba0 100644 (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]);
 }