Home | History | Annotate | Download | only in lazy

Lines Matching refs:ThenBB

733   BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction);
737 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
740 Builder.SetInsertPoint(ThenBB);
746 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
747 ThenBB = Builder.GetInsertBlock();
766 PN->addIncoming(ThenV, ThenBB);