Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/include/llvm/IR/
HDConstant.h64 bool isNegativeZeroValue() const;
HDPatternMatch.h142 return C->isNegativeZeroValue(); in match()
894 return C->isNegativeZeroValue() && L.match(RHS); in matchIfFNeg()
/NextBSD/contrib/llvm/lib/Transforms/InstCombine/
HDInstCombineAddSub.cpp1409 (Z1->isNegativeZeroValue() && Z2->isNegativeZeroValue()))) { in visitFAdd()
/NextBSD/contrib/llvm/lib/IR/
HDInstructions.cpp1792 return C->isNegativeZeroValue(); in isNeg()
1802 return !IgnoreZeroSign ? C->isNegativeZeroValue() : C->isZeroValue(); in isFNeg()
HDConstants.cpp45 bool Constant::isNegativeZeroValue() const { in isNegativeZeroValue() function in Constant