aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorNeil Booth <neil@daikokuya.co.uk>2007-09-26 21:35:05 +0000
committerNeil Booth <neil@daikokuya.co.uk>2007-09-26 21:35:05 +0000
commit117acf9e36a0789d56b52525e031f575f80fe169 (patch)
tree09d9db9813fe53df926f3edb97f8b59399ff6c11 /include
parent4f88170be09496d5e934c601a83d37941ec9037a (diff)
downloadexternal_llvm-117acf9e36a0789d56b52525e031f575f80fe169.zip
external_llvm-117acf9e36a0789d56b52525e031f575f80fe169.tar.gz
external_llvm-117acf9e36a0789d56b52525e031f575f80fe169.tar.bz2
Whitespace cleanup.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42374 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/ADT/APFloat.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/llvm/ADT/APFloat.h b/include/llvm/ADT/APFloat.h
index b53f9fb..69d1e12 100644
--- a/include/llvm/ADT/APFloat.h
+++ b/include/llvm/ADT/APFloat.h
@@ -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
@@ -200,7 +200,7 @@ namespace llvm {
so we won't use operator==. Use one of the following, or write
whatever it is you really mean. */
// bool operator==(const APFloat &) const; // DO NOT IMPLEMENT
-
+
/* IEEE comparison with another floating point number (NaNs
compare unordered, 0==-0). */
cmpResult compare(const APFloat &) const;
@@ -285,7 +285,7 @@ namespace llvm {
exponent_t exponent;
/* What kind of floating point number this is. */
- /* Only 2 bits are required, but VisualStudio incorrectly sign extends
+ /* Only 2 bits are required, but VisualStudio incorrectly sign extends
it. Using the extra bit keeps it from failing under VisualStudio */
fltCategory category: 3;