Searched defs:IfFalse (Results 1 - 3 of 3) sorted by relevance

/external/llvm/include/llvm/
H A DInstructions.h2362 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
2365 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
2373 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse, argument
2375 return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertBefore);
2380 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse, argument
2382 return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertAtEnd);
/external/llvm/lib/VMCore/
H A DInstructions.cpp716 BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond, argument
722 Op<-2>() = IfFalse;
737 BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond, argument
743 Op<-2>() = IfFalse;
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp193 BasicBlock *&IfFalse) {
233 IfFalse = Pred2;
237 IfFalse = Pred1;
261 IfFalse = Pred2;
264 IfFalse = Pred1;
1446 BasicBlock *IfTrue, *IfFalse; local
1447 Value *IfCond = GetIfCondition(BB, IfTrue, IfFalse);
1532 << IfTrue->getName() << " F: " << IfFalse->getName() << "\n");
1552 Value *TrueVal = PN->getIncomingValue(PN->getIncomingBlock(0) == IfFalse);
192 GetIfCondition(BasicBlock *BB, BasicBlock *&IfTrue, BasicBlock *&IfFalse) argument

Completed in 140 milliseconds