Lines Matching refs:LoopBB
824 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
826 // Insert an explicit fall through from the current block to the LoopBB.
827 Builder.CreateBr(LoopBB);
829 // Start insertion in LoopBB.
830 Builder.SetInsertPoint(LoopBB);
872 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);