summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Gottesman <mgottesman@apple.com>2013-06-24 04:19:37 +0000
committerMichael Gottesman <mgottesman@apple.com>2013-06-24 04:19:37 +0000
commitd851ea068c9893e077f9def04e5303f5995590b4 (patch)
treead62384583d1dd355763d9c7519abd28c5b0a079
parent9dc98338b8c6c2d1e9ef0050b7ec1383dd5bfbc5 (diff)
downloadbcm5719-llvm-d851ea068c9893e077f9def04e5303f5995590b4.tar.gz
bcm5719-llvm-d851ea068c9893e077f9def04e5303f5995590b4.zip
[APFloat] Removed out of date comment from isNormal().
I already finished the isIEEENormal => isNormal transition. So isNormal is now IEEE-754R compliant. llvm-svn: 184687
-rw-r--r--llvm/include/llvm/ADT/APFloat.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/include/llvm/ADT/APFloat.h b/llvm/include/llvm/ADT/APFloat.h
index fdabdb85ca2..e3b26f6ca13 100644
--- a/llvm/include/llvm/ADT/APFloat.h
+++ b/llvm/include/llvm/ADT/APFloat.h
@@ -361,9 +361,6 @@ public:
///
/// This implies that the current value of the float is not zero, subnormal,
/// infinite, or NaN following the definition of normality from IEEE-754R.
- ///
- /// The current implementation of isNormal() differs from this by treating
- /// subnormal values as normal values.
bool isNormal() const { return !isDenormal() && isFiniteNonZero(); }
/// Returns true if and only if the current value is zero, subnormal, or
OpenPOWER on IntegriCloud