forked from OSchip/llvm-project
parent
9acbf5aaf9
commit
0fa3ea79ac
|
@ -63,12 +63,12 @@
|
|||
right so that the exponent is maintained at the format's minimum,
|
||||
so that the smallest denormal has just the least significant bit
|
||||
of the significand set. The sign of zeroes and infinities is
|
||||
significant; the exponent and significand of such numbers is
|
||||
not stored, but has a known implicit (deterministic) value:
|
||||
0 for the significands, 0 for zero exponent, all 1 bits for
|
||||
infinity exponent. For NaNs the sign and significand are
|
||||
deterministic, although not really meaningful; the exponent is
|
||||
implicitly all 1 bits.
|
||||
significant; the exponent and significand of such numbers is not
|
||||
stored, but has a known implicit (deterministic) value: 0 for the
|
||||
significands, 0 for zero exponent, all 1 bits for infinity
|
||||
exponent. For NaNs the sign and significand are deterministic,
|
||||
although not really meaningful, and preserved in non-conversion
|
||||
operations. The exponent is implicitly all 1 bits.
|
||||
|
||||
TODO
|
||||
====
|
||||
|
@ -87,7 +87,7 @@
|
|||
from extended exponent range) and IBM two-double extended
|
||||
precision (hard).
|
||||
|
||||
New operations: sqrt, copysign, nextafter, nexttoward.
|
||||
New operations: sqrt, nextafter, nexttoward.
|
||||
*/
|
||||
|
||||
#ifndef LLVM_FLOAT_H
|
||||
|
|
Loading…
Reference in New Issue