Home | History | Annotate | Download | only in Utils

Lines Matching refs:FalseBB

1826 // branch to TrueBB if Cond is true or to FalseBB if Cond is false.
1831 BasicBlock *TrueBB, BasicBlock *FalseBB){
1834 // If TrueBB and FalseBB are equal, only try to preserve one copy of that
1837 BasicBlock *KeepEdge2 = TrueBB != FalseBB ? FalseBB : 0;
1856 if (TrueBB == FalseBB)
1863 Builder.CreateCondBr(Cond, TrueBB, FalseBB);
1864 } else if (KeepEdge1 && (KeepEdge2 || TrueBB == FalseBB)) {
1876 // Only FalseBB was found.
1877 Builder.CreateBr(FalseBB);
1898 BasicBlock *FalseBB = SI->getSuccessor(SI->findCaseValue(FalseVal));
1901 return SimplifyTerminatorOnSelect(SI, Condition, TrueBB, FalseBB);
1918 BasicBlock *FalseBB = FBA->getBasicBlock();
1921 return SimplifyTerminatorOnSelect(IBI, SI->getCondition(), TrueBB, FalseBB);