Home
last modified time | relevance | path

Searched refs:isNegativeZeroValue (Results 1 – 5 of 5) sorted by relevance

/external/llvm/include/llvm/IR/
DConstant.h64 bool isNegativeZeroValue() const;
DPatternMatch.h142 return C->isNegativeZeroValue(); in match()
894 return C->isNegativeZeroValue() && L.match(RHS); in matchIfFNeg()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineAddSub.cpp1409 (Z1->isNegativeZeroValue() && Z2->isNegativeZeroValue()))) { in visitFAdd()
/external/llvm/lib/IR/
DInstructions.cpp2106 return C->isNegativeZeroValue(); in isNeg()
2116 return !IgnoreZeroSign ? C->isNegativeZeroValue() : C->isZeroValue(); in isFNeg()
DConstants.cpp45 bool Constant::isNegativeZeroValue() const { in isNegativeZeroValue() function in Constant