aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-sink.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-03-08 13:57:01 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-03-08 13:57:01 +0000
commit6c6cfbfd5260f774b0517aa3d6d0cc97ea5f81e6 (patch)
treeda9ac66b4af709e8201b3825f6c026442ea0df6f /gcc/tree-ssa-sink.c
parentbe93246638ed4c4096002388883aabebea74cc5a (diff)
downloadgcc-6c6cfbfd5260f774b0517aa3d6d0cc97ea5f81e6.zip
gcc-6c6cfbfd5260f774b0517aa3d6d0cc97ea5f81e6.tar.gz
gcc-6c6cfbfd5260f774b0517aa3d6d0cc97ea5f81e6.tar.bz2
c-common.c, [...]: Fix comment formatting.
* c-common.c, c-opts.c, combine.c, cse.c, dojump.c, gimplify.c, tree-dfa.c, tree-ssa-loop-ivopts.c, tree-ssa-phiopt.c, tree-ssa-pre.c, tree-ssa-sink.c, tree-vect-analyze.c, tree.def, tree.h: Fix comment formatting. From-SVN: r96104
Diffstat (limited to 'gcc/tree-ssa-sink.c')
-rw-r--r--gcc/tree-ssa-sink.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-ssa-sink.c b/gcc/tree-ssa-sink.c
index d1ac56a..5984a5a 100644
--- a/gcc/tree-ssa-sink.c
+++ b/gcc/tree-ssa-sink.c
@@ -73,7 +73,7 @@ Boston, MA 02111-1307, USA. */
static struct
{
- /* The number of statements sunk down the flowgraph by code sinking. */
+ /* The number of statements sunk down the flowgraph by code sinking. */
int sunk;
} sink_stats;
@@ -106,7 +106,7 @@ find_bb_for_arg (tree phi, tree def)
and all the other uses are in phis in the same basic block, but this
requires some expensive checking later (you have to make sure no def/vdef
in the statement occurs for multiple edges in the various phi nodes it's
- used in, so that you only have one place you can sink it to. */
+ used in, so that you only have one place you can sink it to. */
static bool
all_immediate_uses_same_place (dataflow_t imm)
@@ -266,7 +266,7 @@ nearest_common_dominator_of_uses (dataflow_t imm)
/* Given a statement (STMT) and the basic block it is currently in (FROMBB),
determine the location to sink the statement to, if any.
Return the basic block to sink it to, or NULL if we should not sink
- it. */
+ it. */
static tree
statement_sink_location (tree stmt, basic_block frombb)