diff options
author | Michael Gottesman <mgottesman@apple.com> | 2013-06-19 07:34:21 +0000 |
---|---|---|
committer | Michael Gottesman <mgottesman@apple.com> | 2013-06-19 07:34:21 +0000 |
commit | a7cc1243cc6cbeef725ef6883d49c29630c52511 (patch) | |
tree | 5ac0dbfd83ba87b7c9bf1be994b9a8cadd5879e0 /llvm/lib/Support/APFloat.cpp | |
parent | cb873b1fc9437b14f6a4441176adab36fd113a7e (diff) | |
download | bcm5719-llvm-a7cc1243cc6cbeef725ef6883d49c29630c52511.tar.gz bcm5719-llvm-a7cc1243cc6cbeef725ef6883d49c29630c52511.zip |
Fixed comment typo that causes the given comment to actually make sense.
llvm-svn: 184286
Diffstat (limited to 'llvm/lib/Support/APFloat.cpp')
-rw-r--r-- | llvm/lib/Support/APFloat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/APFloat.cpp b/llvm/lib/Support/APFloat.cpp index 2ad66c5687c..92c8b6d39d9 100644 --- a/llvm/lib/Support/APFloat.cpp +++ b/llvm/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; |