diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-11 05:54:35 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-11 05:54:35 +0000 |
commit | 5aedf60c504bab5d16d4977db0d3ba6570eff6b7 (patch) | |
tree | 89a9c30bd0acac2c00212347139e5c50102d1fce /gcc/config/fp-bit.c | |
parent | 5222575cfca1dba5bf37c6fcafaee820d4186f1f (diff) | |
download | gcc-5aedf60c504bab5d16d4977db0d3ba6570eff6b7.tar.gz |
* c-typeck.c, combine.c, cse.c, dominance.c, et-forest.h,
ggc-page.c, var-tracking.c, config/fp-bit.c, config/c4x/c4x.c,
config/cris/cris.c, config/i386/ppro.md, config/i860/i860.c,
config/i860/i860.h, config/m32r/m32r.h, config/m32r/xm-m32r.h,
config/m68hc11/m68hc11.h, config/m68hc11/m68hc11.md,
config/mips/mips.c, config/mmix/mmix.c, config/ns32k/ns32k.h,
config/pa/pa.c, config/pa/pa32-regs.h, config/pa/pa64-regs.h,
config/pdp11/pdp11.h, config/rs6000/rs6000.c,
config/stormy16/stormy16.c: Fix comment typos and formatting.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79303 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/fp-bit.c')
-rw-r--r-- | gcc/config/fp-bit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/fp-bit.c b/gcc/config/fp-bit.c index 0de191da28f..748e24baa2e 100644 --- a/gcc/config/fp-bit.c +++ b/gcc/config/fp-bit.c @@ -915,7 +915,7 @@ _fpmul_parts ( fp_number_type * a, { /* We're a further than half way by a small amount corresponding to the bits set in "low". Knowing that, we round here and - not in pack_d, because there we don't have "low" avaliable + not in pack_d, because there we don't have "low" available anymore. */ high += GARDROUND + 1; @@ -1034,7 +1034,7 @@ _fpdiv_parts (fp_number_type * a, /* We're a further than half way by the small amount corresponding to the bits set in "numerator". Knowing that, we round here and not in pack_d, because there we - don't have "numerator" avaliable anymore. */ + don't have "numerator" available anymore. */ quotient += GARDROUND + 1; /* Avoid further rounding in pack_d. */ |