From: Davide Italiano Date: Thu, 13 Apr 2017 20:02:27 +0000 (+0000) Subject: [LCSSA] Remove spurious whitespaces. NFCI. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=549078d1ab440c534b51e74857eed03fa6a9ed38;p=platform%2Fupstream%2Fllvm.git [LCSSA] Remove spurious whitespaces. NFCI. llvm-svn: 300243 --- diff --git a/llvm/lib/Transforms/Utils/LCSSA.cpp b/llvm/lib/Transforms/Utils/LCSSA.cpp index eeab012..99f8759 100644 --- a/llvm/lib/Transforms/Utils/LCSSA.cpp +++ b/llvm/lib/Transforms/Utils/LCSSA.cpp @@ -87,7 +87,7 @@ bool llvm::formLCSSAForInstructions(SmallVectorImpl &Worklist, Instruction *I = Worklist.pop_back_val(); BasicBlock *InstBB = I->getParent(); Loop *L = LI.getLoopFor(InstBB); - if (!LoopExitBlocks.count(L)) + if (!LoopExitBlocks.count(L)) L->getExitBlocks(LoopExitBlocks[L]); assert(LoopExitBlocks.count(L)); const SmallVectorImpl &ExitBlocks = LoopExitBlocks[L];