[PATCH] D67507: Refer to IEEE 754-2019 in langref instead of 2018 draft
David Majnemer via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 12 10:21:21 PDT 2019
majnemer added inline comments.
================
Comment at: docs/LangRef.rst:2705
The binary format of half, float, double, and fp128 correspond to the
IEEE-754-2008 specifications for binary16, binary32, binary64, and binary128
respectively.
----------------
2019
================
Comment at: docs/LangRef.rst:12185
Follows the IEEE-754 semantics for minNum, except for handling of
signaling NaNs. This match's the behavior of libm's fmin.
----------------
minNum -> minimumNumber
================
Comment at: docs/LangRef.rst:12194
Unlike the IEEE-754 2008 behavior, this does not distinguish between
signaling and quiet NaN inputs. If a target's implementation follows
----------------
2019
================
Comment at: docs/LangRef.rst:12235-12244
Follows the IEEE-754 semantics for maxNum except for the handling of
signaling NaNs. This matches the behavior of libm's fmax.
If either operand is a NaN, returns the other non-NaN operand. Returns
NaN only if both operands are NaN. The returned NaN is always
quiet. If the operands compare equal, returns a value that compares
equal to both operands. This means that fmax(+/-0.0, +/-0.0) could
----------------
Ditto.
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D67507/new/
https://reviews.llvm.org/D67507
More information about the llvm-commits
mailing list