Lines Matching refs:LoopBB
806 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
808 // Insert an explicit fall through from the current block to the LoopBB.
809 Builder.CreateBr(LoopBB);
811 // Start insertion in LoopBB.
812 Builder.SetInsertPoint(LoopBB);
854 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);