Lines Matching refs:LoopBB
1046 BasicBlock *LoopBB = BasicBlock::Create(getGlobalContext(), "loop", TheFunction);
1048 // Insert an explicit fall through from the current block to the LoopBB.
1049 Builder.CreateBr(LoopBB);
1051 // Start insertion in LoopBB.
1052 Builder.SetInsertPoint(LoopBB);
1094 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);