Commit 229031d0 by Kazu Hirata Committed by Kazu Hirata

cgraphunit.c, [...]: Fix comment typos.

	* cgraphunit.c, predict.c, tree-ssa-loop-ivopts.c: Fix comment
	typos.

From-SVN: r87283
parent 3cf735f6
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> 2004-09-10 Paolo Bonzini <bonzini@gnu.org>
* cgraph.h (cgraph_dump_file): Do not declare. * cgraph.h (cgraph_dump_file): Do not declare.
......
...@@ -823,7 +823,7 @@ cgraph_expand_function (struct cgraph_node *node) ...@@ -823,7 +823,7 @@ cgraph_expand_function (struct cgraph_node *node)
DECL_SAVED_TREE (node->decl) = NULL; DECL_SAVED_TREE (node->decl) = NULL;
DECL_STRUCT_FUNCTION (node->decl) = NULL; DECL_STRUCT_FUNCTION (node->decl) = NULL;
DECL_INITIAL (node->decl) = error_mark_node; 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. */ points to the dead function body. */
while (node->callees) while (node->callees)
cgraph_remove_edge (node->callees); cgraph_remove_edge (node->callees);
......
...@@ -313,7 +313,7 @@ dump_prediction (FILE *file, enum br_predictor predictor, int probability, ...@@ -313,7 +313,7 @@ dump_prediction (FILE *file, enum br_predictor predictor, int probability,
fprintf (file, "\n"); 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. */ evenly and hope for the best. */
static void static void
set_even_probabilities (basic_block bb) set_even_probabilities (basic_block bb)
...@@ -846,7 +846,7 @@ estimate_probability (struct loops *loops_info) ...@@ -846,7 +846,7 @@ estimate_probability (struct loops *loops_info)
profile_status = PROFILE_GUESSED; profile_status = PROFILE_GUESSED;
} }
/* Set edge->probability for each succestor edge of BB. */ /* Set edge->probability for each successor edge of BB. */
void void
guess_outgoing_edge_probabilities (basic_block bb) guess_outgoing_edge_probabilities (basic_block bb)
{ {
......
...@@ -1559,7 +1559,7 @@ add_standard_iv_candidates (struct ivopts_data *data) ...@@ -1559,7 +1559,7 @@ add_standard_iv_candidates (struct ivopts_data *data)
build_int_cst (unsigned_intSI_type_node, 1), build_int_cst (unsigned_intSI_type_node, 1),
true, NULL); 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) if (BITS_PER_WORD > 32)
add_candidate (data, add_candidate (data,
build_int_cst (unsigned_intDI_type_node, 0), build_int_cst (unsigned_intDI_type_node, 0),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment