diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-08 13:57:01 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-08 13:57:01 +0000 |
commit | f7f07c955cb07ec8c84640117467542fc07a2591 (patch) | |
tree | da9ac66b4af709e8201b3825f6c026442ea0df6f /gcc/tree-ssa-sink.c | |
parent | 0052a1df0e4ea6d250f0a6da0c2618d30888a673 (diff) | |
download | gcc-f7f07c955cb07ec8c84640117467542fc07a2591.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96104 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-sink.c')
-rw-r--r-- | gcc/tree-ssa-sink.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-ssa-sink.c b/gcc/tree-ssa-sink.c index d1ac56a1afe..5984a5a3fcf 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) |