From fdd73b5037c6e5e5b0523ccf891d4023ca4a26fd Mon Sep 17 00:00:00 2001 From: Philip Reames Date: Wed, 22 Aug 2018 03:36:42 +0000 Subject: [PATCH] [AST] Fix a whitespace typo [NFC] llvm-svn: 340384 --- llvm/lib/Analysis/AliasSetTracker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Analysis/AliasSetTracker.cpp b/llvm/lib/Analysis/AliasSetTracker.cpp index a9b01df..e5e3ba0 100644 --- a/llvm/lib/Analysis/AliasSetTracker.cpp +++ b/llvm/lib/Analysis/AliasSetTracker.cpp @@ -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(UnknownInsts[0]); } -- 2.7.4