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

/external/llvm/include/llvm/
H A DInstructions.h2355 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
2358 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond,
2366 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse, argument
2368 return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertBefore);
2373 static BranchInst *Create(BasicBlock *IfTrue, BasicBlock *IfFalse, argument
2375 return new(3) BranchInst(IfTrue, IfFalse, Cond, InsertAtEnd);
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp135 BasicBlock *&IfFalse) {
175 IfFalse = Pred2;
179 IfFalse = Pred1;
203 IfFalse = Pred2;
206 IfFalse = Pred1;
1237 BasicBlock *IfTrue, *IfFalse; local
1238 Value *IfCond = GetIfCondition(BB, IfTrue, IfFalse);
1323 << IfTrue->getName() << " F: " << IfFalse->getName() << "\n");
1343 Value *TrueVal = PN->getIncomingValue(PN->getIncomingBlock(0) == IfFalse);
134 GetIfCondition(BasicBlock *BB, BasicBlock *&IfTrue, BasicBlock *&IfFalse) argument
/external/llvm/lib/VMCore/
H A DInstructions.cpp710 BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond, argument
716 Op<-2>() = IfFalse;
731 BranchInst::BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond, argument
737 Op<-2>() = IfFalse;

Completed in 68 milliseconds