Lines Matching defs:FalseBB
2462 // branch to TrueBB if Cond is true or to FalseBB if Cond is false.
2467 BasicBlock *TrueBB, BasicBlock *FalseBB,
2472 // If TrueBB and FalseBB are equal, only try to preserve one copy of that
2475 BasicBlock *KeepEdge2 = TrueBB != FalseBB ? FalseBB : 0;
2494 if (TrueBB == FalseBB)
2501 BranchInst *NewBI = Builder.CreateCondBr(Cond, TrueBB, FalseBB);
2507 } else if (KeepEdge1 && (KeepEdge2 || TrueBB == FalseBB)) {
2519 // Only FalseBB was found.
2520 Builder.CreateBr(FalseBB);
2541 BasicBlock *FalseBB = SI->findCaseValue(FalseVal).getCaseSuccessor();
2543 // Get weight for TrueBB and FalseBB.
2558 return SimplifyTerminatorOnSelect(SI, Condition, TrueBB, FalseBB,
2576 BasicBlock *FalseBB = FBA->getBasicBlock();
2579 return SimplifyTerminatorOnSelect(IBI, SI->getCondition(), TrueBB, FalseBB,