Home | History | Annotate | Download | only in lazy

Lines Matching refs:LoopBB

1087   BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
1089 // Insert an explicit fall through from the current block to the LoopBB.
1090 Builder.CreateBr(LoopBB);
1092 // Start insertion in LoopBB.
1093 Builder.SetInsertPoint(LoopBB);
1135 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);