[llvm] r184286 - Fixed comment typo that causes the given comment to actually make sense.

Michael Gottesman mgottesman at apple.com
Wed Jun 19 00:34:21 PDT 2013


Author: mgottesman
Date: Wed Jun 19 02:34:21 2013
New Revision: 184286

URL: http://llvm.org/viewvc/llvm-project?rev=184286&view=rev
Log:
Fixed comment typo that causes the given comment to actually make sense.

Modified:
    llvm/trunk/lib/Support/APFloat.cpp

Modified: llvm/trunk/lib/Support/APFloat.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/APFloat.cpp?rev=184286&r1=184285&r2=184286&view=diff
==============================================================================
--- llvm/trunk/lib/Support/APFloat.cpp (original)
+++ llvm/trunk/lib/Support/APFloat.cpp Wed Jun 19 02:34:21 2013
@@ -687,7 +687,7 @@ APFloat::isDenormal() const {
 bool
 APFloat::isSmallest() const {
   // The smallest number by magnitude in our format will be the smallest
-  // denormal, i.e. the floating point normal with exponent being minimum
+  // denormal, i.e. the floating point number with exponent being minimum
   // exponent and significand bitwise equal to 1 (i.e. with MSB equal to 0).
   return isNormal() && exponent == semantics->minExponent &&
     significandMSB() == 0;





More information about the llvm-commits mailing list