OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NotCond
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp
747
Value *
NotCond
= Builder->CreateNot(CondVal, "not."+CondVal->getName());
748
return BinaryOperator::CreateAnd(
NotCond
, FalseVal);
756
Value *
NotCond
= Builder->CreateNot(CondVal, "not."+CondVal->getName());
757
return BinaryOperator::CreateOr(
NotCond
, TrueVal);
788
Value *
NotCond
= Builder->CreateNot(CondVal, "not."+CondVal->getName());
789
return new ZExtInst(
NotCond
, SI.getType());
794
Value *
NotCond
= Builder->CreateNot(CondVal, "not."+CondVal->getName());
795
return new SExtInst(
NotCond
, SI.getType());
[
all
...]
/external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp
[
all
...]
Completed in 30 milliseconds