Home | History | Annotate | Download | only in cached

Lines Matching refs:LoopBB

1189   BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
1191 // Insert an explicit fall through from the current block to the LoopBB.
1192 Builder.CreateBr(LoopBB);
1194 // Start insertion in LoopBB.
1195 Builder.SetInsertPoint(LoopBB);
1237 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);