Home | History | Annotate | Download | only in Chapter4

Lines Matching defs:LoopBB

898   BasicBlock *LoopBB = BasicBlock::Create(TheContext, "loop", TheFunction);
900 // Insert an explicit fall through from the current block to the LoopBB.
901 Builder.CreateBr(LoopBB);
903 // Start insertion in LoopBB.
904 Builder.SetInsertPoint(LoopBB);
948 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);