Home | History | Annotate | Download | only in Chapter1

Lines Matching refs:ElseBB

836   BasicBlock *ElseBB = BasicBlock::Create(TheContext, "else");
839 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
853 TheFunction->getBasicBlockList().push_back(ElseBB);
854 Builder.SetInsertPoint(ElseBB);
861 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
862 ElseBB = Builder.GetInsertBlock();
870 PN->addIncoming(ElseV, ElseBB);