Lines Matching refs:IfTrue
2318 explicit BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore = 0);
2319 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
2321 BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd);
2322 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
2327 static BranchInst *Create(BasicBlock *IfTrue, Instruction *InsertBefore = 0) {
2328 return new(1) BranchInst(IfTrue, InsertBefore);
2330 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse,
2332 return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertBefore);
2334 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *InsertAtEnd) {
2335 return new(1) BranchInst(IfTrue, InsertAtEnd);
2337 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse,
2339 return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertAtEnd);