Home | History | Annotate | Download | only in cached

Lines Matching defs:ThenBB

1115   BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction);
1119 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
1122 Builder.SetInsertPoint(ThenBB);
1128 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
1129 ThenBB = Builder.GetInsertBlock();
1148 PN->addIncoming(ThenV, ThenBB);