summaryrefslogtreecommitdiff
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
commitdaee0b0def120605f6c702fc47ab3450037ae184 (patch)
treee6f6c6ef800bdc12399016432aaa85e140bc4ac6
parentdb045ab1532469551a56e5811e684920a6f7a10c (diff)
downloadllvm-daee0b0def120605f6c702fc47ab3450037ae184.tar.gz
llvm-daee0b0def120605f6c702fc47ab3450037ae184.tar.bz2
llvm-daee0b0def120605f6c702fc47ab3450037ae184.tar.xz
[APFloat] Removed out of date comment from isNormal().
I already finished the isIEEENormal => isNormal transition. So isNormal is now IEEE-754R compliant. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184687 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/ADT/APFloat.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/llvm/ADT/APFloat.h b/include/llvm/ADT/APFloat.h
index fdabdb85ca..e3b26f6ca1 100644
--- a/include/llvm/ADT/APFloat.h
+++ b/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