Home | History | Annotate | Download | only in initial

Lines Matching refs:LoopBB

1047   BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
1049 // Insert an explicit fall through from the current block to the LoopBB.
1050 Builder.CreateBr(LoopBB);
1052 // Start insertion in LoopBB.
1053 Builder.SetInsertPoint(LoopBB);
1095 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);