summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMichael Gottesman <mgottesman@apple.com>2013-06-19 07:34:21 +0000
committerMichael Gottesman <mgottesman@apple.com>2013-06-19 07:34:21 +0000
commit15c6aa91477c1984455185854622ba4ee4829ab1 (patch)
tree0293f67245940ebe9d498956be490d6cfd997c9c /lib
parenteb30e5115e4f19a0a426882bd9e2ae6a68f133b1 (diff)
downloadllvm-15c6aa91477c1984455185854622ba4ee4829ab1.tar.gz
llvm-15c6aa91477c1984455185854622ba4ee4829ab1.tar.bz2
llvm-15c6aa91477c1984455185854622ba4ee4829ab1.tar.xz
Fixed comment typo that causes the given comment to actually make sense.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184286 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Support/APFloat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/APFloat.cpp b/lib/Support/APFloat.cpp
index 2ad66c5687..92c8b6d39d 100644
--- a/lib/Support/APFloat.cpp
+++ b/lib/Support/APFloat.cpp
@@ -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;