Lines Matching refs:IfTrue
2372 explicit BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore = 0);
2373 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
2375 BranchInst(BasicBlock *IfTrue, BasicBlock *InsertAtEnd);
2376 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
2381 static BranchInst *Create(BasicBlock *IfTrue, Instruction *InsertBefore = 0) {
2382 return new(1) BranchInst(IfTrue, InsertBefore);
2384 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse,
2386 return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertBefore);
2388 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *InsertAtEnd) {
2389 return new(1) BranchInst(IfTrue, InsertAtEnd);
2391 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse,
2393 return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertAtEnd);