Searched defs:NotCond (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp842 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName()); local
843 return BinaryOperator::CreateAnd(NotCond, FalseVal);
851 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName()); local
852 return BinaryOperator::CreateOr(NotCond, TrueVal);
883 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName()); local
884 return new ZExtInst(NotCond, SI.getType());
889 Value *NotCond = Builder->CreateNot(CondVal, "not."+CondVal->getName()); local
890 return new SExtInst(NotCond, SI.getType());
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp2315 Instruction *NotCond = local
2320 NotCond, New,
2336 Instruction *NotCond = local
2341 NotCond, MergedCond,

Completed in 86 milliseconds