diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-02-27 07:09:43 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-02-27 07:09:43 +0000 |
commit | a1105617991df6ea134ea207e4bcdb2b05e6e540 (patch) | |
tree | f41f4b240dc12ae9461209e19a5a72a2a6dc5e0d /gcc/fold-const.c | |
parent | 40fcf31b2f6ddd6c3b604620446e6447b8942745 (diff) | |
download | gcc-a1105617991df6ea134ea207e4bcdb2b05e6e540.zip gcc-a1105617991df6ea134ea207e4bcdb2b05e6e540.tar.gz gcc-a1105617991df6ea134ea207e4bcdb2b05e6e540.tar.bz2 |
c-decl.c, [...]: Fix comment typos and formatting.
* c-decl.c, c-ppoutput.c, combine.c, cppfiles.c, dwarf2out.c,
expr.c, fold-const.c, gcc.c, haifa-sched.c, loop-iv.c,
params.def, read-rtl.c, rtl.c, rtlanal.c, toplev.c: Fix
comment typos and formatting. Follow spelling conventions.
From-SVN: r78555
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 2b2e874..956478a 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -718,7 +718,7 @@ div_and_round_double (enum tree_code code, int uns, if (quo_neg) neg_double (*lquo, *hquo, lquo, hquo); - /* compute trial remainder: rem = num - (quo * den) */ + /* Compute trial remainder: rem = num - (quo * den) */ mul_double (*lquo, *hquo, lden_orig, hden_orig, lrem, hrem); neg_double (*lrem, *hrem, lrem, hrem); add_double (lnum_orig, hnum_orig, *lrem, *hrem, lrem, hrem); |