Home | History | Annotate | Download | only in Chapter7

Lines Matching defs:ThenBB

723   BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction);
727 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
730 Builder.SetInsertPoint(ThenBB);
736 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
737 ThenBB = Builder.GetInsertBlock();
756 PN->addIncoming(ThenV, ThenBB);