Home | History | Annotate | Download | only in lazy

Lines Matching refs:ElseBB

735   BasicBlock *ElseBB = BasicBlock::Create(getGlobalContext(), "else");
738 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
751 TheFunction->getBasicBlockList().push_back(ElseBB);
752 Builder.SetInsertPoint(ElseBB);
758 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
759 ElseBB = Builder.GetInsertBlock();
768 PN->addIncoming(ElseV, ElseBB);