diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-09-25 14:36:40 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-09-25 14:36:40 +0000 |
commit | ea4b78487cb4fa983c3bfa1f921c3b04f2fded93 (patch) | |
tree | 5867ad91eef65934da4de107a8e9e80facc6cfd6 /gcc/libgcc2.c | |
parent | e75220c8ced33002009c5c9aa43a6db9015c9f50 (diff) | |
download | gcc-ea4b78487cb4fa983c3bfa1f921c3b04f2fded93.zip gcc-ea4b78487cb4fa983c3bfa1f921c3b04f2fded93.tar.gz gcc-ea4b78487cb4fa983c3bfa1f921c3b04f2fded93.tar.bz2 |
c-typeck.c, [...]: Fix comment formatting.
* c-typeck.c, defaults.h, dwarf.h, dwarf2out.c, fold-const.c,
gthr-dce.h, gthr-posix.h, gthr-solaris.h, gthr-win32.h,
lambda-code.c, lambda-mat.c, libgcc2.c, stmt.c,
tree-ssa-pre.c, tree-vn.c, tree.h: Fix comment formatting.
From-SVN: r88102
Diffstat (limited to 'gcc/libgcc2.c')
-rw-r--r-- | gcc/libgcc2.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c index 3d021e2..e4fc91f 100644 --- a/gcc/libgcc2.c +++ b/gcc/libgcc2.c @@ -489,16 +489,16 @@ __udiv_w_sdiv (UWtype *rp, UWtype a1, UWtype a0, UWtype d) { if (a1 < d - a1 - (a0 >> (W_TYPE_SIZE - 1))) { - /* dividend, divisor, and quotient are nonnegative */ + /* Dividend, divisor, and quotient are nonnegative. */ sdiv_qrnnd (q, r, a1, a0, d); } else { - /* Compute c1*2^32 + c0 = a1*2^32 + a0 - 2^31*d */ + /* Compute c1*2^32 + c0 = a1*2^32 + a0 - 2^31*d. */ sub_ddmmss (c1, c0, a1, a0, d >> 1, d << (W_TYPE_SIZE - 1)); - /* Divide (c1*2^32 + c0) by d */ + /* Divide (c1*2^32 + c0) by d. */ sdiv_qrnnd (q, r, c1, c0, d); - /* Add 2^31 to quotient */ + /* Add 2^31 to quotient. */ q += (UWtype) 1 << (W_TYPE_SIZE - 1); } } |