diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-09-05 16:05:06 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-09-05 16:05:06 +0000 |
commit | 8c27b7d4d1b35fa0d2f514a98d0524eff2278e40 (patch) | |
tree | f62d741d707e9201cb9c5b7758045bd92d649415 /gcc/fold-const.c | |
parent | 2a7e31df70cf600dfaa401cb426578994739bce0 (diff) | |
download | gcc-8c27b7d4d1b35fa0d2f514a98d0524eff2278e40.zip gcc-8c27b7d4d1b35fa0d2f514a98d0524eff2278e40.tar.gz gcc-8c27b7d4d1b35fa0d2f514a98d0524eff2278e40.tar.bz2 |
c-common.c, [...]: Fix comment formatting.
* c-common.c, c-decl.c, combine.c, defaults.h, fold-const.c,
gimplify.c, gthr-nks.h, hooks.c, lambda-code.c, lambda-mat.c,
stor-layout.c, target.h, tree-cfg.c, tree-chrec.c,
tree-if-conv.c, tree-inline.c, tree-into-ssa.c,
tree-mudflap.c, tree-optimize.c, tree-scalar-evolution.c,
tree-ssa-alias.c, tree-ssa-ccp.c, tree-ssa-dce.c,
tree-ssa-pre.c, tree-vectorizer.c, tree-vectorizer.h, tree.h,
vec.h: Fix comment formatting.
From-SVN: r87105
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index d8c511a..a86fb4c 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -10584,7 +10584,7 @@ round_up (tree value, int divisor) /* See if VALUE is already a multiple of DIVISOR. If so, we don't have to do anything. Only do this when we are not given a const, because in that case, this check is more expensive than just - doing it. */ + doing it. */ if (TREE_CODE (value) != INTEGER_CST) { div = build_int_cst (TREE_TYPE (value), divisor); @@ -10629,7 +10629,7 @@ round_down (tree value, int divisor) /* See if VALUE is already a multiple of DIVISOR. If so, we don't have to do anything. Only do this when we are not given a const, because in that case, this check is more expensive than just - doing it. */ + doing it. */ if (TREE_CODE (value) != INTEGER_CST) { div = build_int_cst (TREE_TYPE (value), divisor); |