Home | History | Annotate | Download | only in Chapter7

Lines Matching refs:ElseBB

724   BasicBlock *ElseBB = BasicBlock::Create(getGlobalContext(), "else");
727 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
740 TheFunction->getBasicBlockList().push_back(ElseBB);
741 Builder.SetInsertPoint(ElseBB);
747 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
748 ElseBB = Builder.GetInsertBlock();
757 PN->addIncoming(ElseV, ElseBB);