Home | History | Annotate | Download | only in cached

Lines Matching refs:LoopBB

825   BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
827 // Insert an explicit fall through from the current block to the LoopBB.
828 Builder.CreateBr(LoopBB);
830 // Start insertion in LoopBB.
831 Builder.SetInsertPoint(LoopBB);
873 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);