Lines Matching refs:LoopBB
796 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
798 // Insert an explicit fall through from the current block to the LoopBB.
799 Builder.CreateBr(LoopBB);
801 // Start insertion in LoopBB.
802 Builder.SetInsertPoint(LoopBB);
844 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);