Home | History | Annotate | Download | only in lazy

Lines Matching defs:ThenBB

1014   BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunction);
1018 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
1021 Builder.SetInsertPoint(ThenBB);
1027 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
1028 ThenBB = Builder.GetInsertBlock();
1047 PN->addIncoming(ThenV, ThenBB);