Home | History | Annotate | Download | only in initial

Lines Matching refs:ElseBB

975   BasicBlock *ElseBB = BasicBlock::Create(getGlobalContext(), "else");
978 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
991 TheFunction->getBasicBlockList().push_back(ElseBB);
992 Builder.SetInsertPoint(ElseBB);
998 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
999 ElseBB = Builder.GetInsertBlock();
1008 PN->addIncoming(ElseV, ElseBB);