Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:TrueBlock

4559   BasicBlock *TrueBlock = nullptr;
4565 TrueBlock = BasicBlock::Create(SI->getContext(), "select.true.sink",
4567 auto *TrueBranch = BranchInst::Create(EndBlock, TrueBlock);
4581 if (TrueBlock == FalseBlock) {
4582 assert(TrueBlock == nullptr &&
4595 if (TrueBlock == nullptr) {
4597 TrueBlock = StartBlock;
4599 BranchInst::Create(TrueBlock, EndBlock, SI->getCondition(), SI);
4602 BranchInst::Create(TrueBlock, FalseBlock, SI->getCondition(), SI);
4608 PN->addIncoming(SI->getTrueValue(), TrueBlock);