Home | History | Annotate | Download | only in Chapter7

Lines Matching refs:LoopBB

798   BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
800 // Insert an explicit fall through from the current block to the LoopBB.
801 Builder.CreateBr(LoopBB);
803 // Start insertion in LoopBB.
804 Builder.SetInsertPoint(LoopBB);
846 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);