Home | History | Annotate | Download | only in cached

Lines Matching defs:ThenBB

751   BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction);
755 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
758 Builder.SetInsertPoint(ThenBB);
764 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
765 ThenBB = Builder.GetInsertBlock();
784 PN->addIncoming(ThenV, ThenBB);