Home | History | Annotate | Download | only in complete

Lines Matching refs:ElseBB

1295   BasicBlock *ElseBB = BasicBlock::Create(getGlobalContext(), "else");
1298 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
1311 TheFunction->getBasicBlockList().push_back(ElseBB);
1312 Builder.SetInsertPoint(ElseBB);
1318 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
1319 ElseBB = Builder.GetInsertBlock();
1328 PN->addIncoming(ElseV, ElseBB);