diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-10 08:56:36 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-10 08:56:36 +0000 |
commit | 7edd21a5e41f37f04a18533a5f015e494f42b5c5 (patch) | |
tree | a235258f481319105e716bd009d194ca54190e52 /gcc | |
parent | d239c51246d16c59416c7b5ce74152da24b1d3ed (diff) | |
download | gcc-7edd21a5e41f37f04a18533a5f015e494f42b5c5.tar.gz |
* cgraphunit.c, predict.c, tree-ssa-loop-ivopts.c: Fix comment
typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87283 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cgraphunit.c | 2 | ||||
-rw-r--r-- | gcc/predict.c | 4 | ||||
-rw-r--r-- | gcc/tree-ssa-loop-ivopts.c | 2 |
4 files changed, 9 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e9f8cdfdd66..5053005a10a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-09-10 Kazu Hirata <kazu@cs.umass.edu> + + * cgraphunit.c, predict.c, tree-ssa-loop-ivopts.c: Fix comment + typos. + 2004-09-10 Paolo Bonzini <bonzini@gnu.org> * cgraph.h (cgraph_dump_file): Do not declare. diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index bc14983b56e..e297c217839 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -823,7 +823,7 @@ cgraph_expand_function (struct cgraph_node *node) DECL_SAVED_TREE (node->decl) = NULL; DECL_STRUCT_FUNCTION (node->decl) = NULL; DECL_INITIAL (node->decl) = error_mark_node; - /* Elliminate all call edges. This is important so the call_expr no longer + /* Eliminate all call edges. This is important so the call_expr no longer points to the dead function body. */ while (node->callees) cgraph_remove_edge (node->callees); diff --git a/gcc/predict.c b/gcc/predict.c index 99dac1c1386..fbbc1579b39 100644 --- a/gcc/predict.c +++ b/gcc/predict.c @@ -313,7 +313,7 @@ dump_prediction (FILE *file, enum br_predictor predictor, int probability, fprintf (file, "\n"); } -/* We can not predict the probabilities of ougtoing edges of bb. Set them +/* We can not predict the probabilities of outgoing edges of bb. Set them evenly and hope for the best. */ static void set_even_probabilities (basic_block bb) @@ -846,7 +846,7 @@ estimate_probability (struct loops *loops_info) profile_status = PROFILE_GUESSED; } -/* Set edge->probability for each succestor edge of BB. */ +/* Set edge->probability for each successor edge of BB. */ void guess_outgoing_edge_probabilities (basic_block bb) { diff --git a/gcc/tree-ssa-loop-ivopts.c b/gcc/tree-ssa-loop-ivopts.c index 4ff3e0df617..c8e3762a5e9 100644 --- a/gcc/tree-ssa-loop-ivopts.c +++ b/gcc/tree-ssa-loop-ivopts.c @@ -1559,7 +1559,7 @@ add_standard_iv_candidates (struct ivopts_data *data) build_int_cst (unsigned_intSI_type_node, 1), true, NULL); - /* The same for a long type if it is still fast enought. */ + /* The same for a long type if it is still fast enough. */ if (BITS_PER_WORD > 32) add_candidate (data, build_int_cst (unsigned_intDI_type_node, 0), |