[APFloat] Removed out of date comment from isNormal().
authorMichael Gottesman <mgottesman@apple.com>
Mon, 24 Jun 2013 04:19:37 +0000 (04:19 +0000)
committerMichael Gottesman <mgottesman@apple.com>
Mon, 24 Jun 2013 04:19:37 +0000 (04:19 +0000)
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

include/llvm/ADT/APFloat.h

index fdabdb85ca235614bb943cc5a19b2aed1693762f..e3b26f6ca13cbc3535f717001a7306095d8fa6af 100644 (file)
@@ -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