Return all FP classes strictly greater than every value in Mask.
Synopsis
Declared in <llvm/ADT/FloatingPointMode.h>
FPClassTest
orderedStrictlyGreater(
FPClassTest Mask,
bool OrderedZeroSign = false);
Description
That is, return all classes for which the comparison fcmp ole LHS, RHS will always return false. Ignores nan and treats the sign of the zeroes as ordered.
If OrderedZeroSign is true, ‐0 will be treated as ordered less than +0, unlike fcmp.
Return Value
All FP classes strictly greater than every value in Mask.
Parameters
Name |
Description |
Mask |
Classes whose values bound the comparison from below. |
OrderedZeroSign |
Treat ‐0 as ordered less than +0 when true. |
Created with MrDocs