aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-ccp.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-05-30 18:32:31 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-05-30 18:32:31 +0000
commit9cf737f89ffe0c75614ad388440b7b7706b6316b (patch)
treebaf32c5e895885ca41746d8d293000d998661d76 /gcc/tree-ssa-ccp.c
parent0f1f6967a21f8e4cc6ca7448dd9adc5d09c99edb (diff)
downloadgcc-9cf737f89ffe0c75614ad388440b7b7706b6316b.zip
gcc-9cf737f89ffe0c75614ad388440b7b7706b6316b.tar.gz
gcc-9cf737f89ffe0c75614ad388440b7b7706b6316b.tar.bz2
bb-reorder.c, [...]: Fix comment formatting.
* bb-reorder.c, builtins.c, c-common.c, c-gimplify.c, c-incpath.c, cgraphunit.c, ddg.c, defaults.h, dwarf2out.c, expmed.c, flags.h, gcc.c, gensupport.c, gimplify.c, global.c, passes.c, reg-stack.c, target.h, toplev.c, tree-alias-ander.c, tree-alias-common.c, tree-cfg.c, tree-complex.c, tree-dfa.c, tree-eh.c, tree-mudflap.c, tree-mudflap.h, tree-outof-ssa.c, tree-phinodes.c, tree-pretty-print.c, tree-ssa-alias.c, tree-ssa-ccp.c, tree-ssa-live.c, tree-ssa-live.h, tree-ssa-pre.c, tree.h, value-prof.h, varasm.c: Fix comment formatting. From-SVN: r82463
Diffstat (limited to 'gcc/tree-ssa-ccp.c')
-rw-r--r--gcc/tree-ssa-ccp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tree-ssa-ccp.c b/gcc/tree-ssa-ccp.c
index 5b6d21e..ecb492b 100644
--- a/gcc/tree-ssa-ccp.c
+++ b/gcc/tree-ssa-ccp.c
@@ -461,7 +461,7 @@ visit_phi_node (tree phi)
else
for (i = 0; i < PHI_NUM_ARGS (phi); i++)
{
- /* Compute the meet operator over all the PHI arguments. */
+ /* Compute the meet operator over all the PHI arguments. */
edge e = PHI_ARG_EDGE (phi, i);
if (dump_file && (dump_flags & TDF_DETAILS))
@@ -883,7 +883,7 @@ ccp_fold (tree stmt)
}
/* We may be able to fold away calls to builtin functions if their
- arguments are constants. */
+ arguments are constants. */
else if (code == CALL_EXPR
&& TREE_CODE (TREE_OPERAND (rhs, 0)) == ADDR_EXPR
&& (TREE_CODE (TREE_OPERAND (TREE_OPERAND (rhs, 0), 0))
@@ -1430,7 +1430,7 @@ likely_value (tree stmt)
/* A subroutine of fold_stmt_r. Attempts to fold *(A+O) to A[X].
BASE is an array type. OFFSET is a byte displacement. ORIG_TYPE
- is the desired result type. */
+ is the desired result type. */
static tree
maybe_fold_offset_to_array_ref (tree base, tree offset, tree orig_type)
@@ -1884,7 +1884,7 @@ fold_stmt_r (tree *expr_p, int *walk_subtrees, void *data)
break;
}
}
- /* Fall through is an error; it will be detected in tree-sra. */
+ /* Fall through is an error; it will be detected in tree-sra. */
}
break;