Commit 536fa7b7 by Kazu Hirata Committed by Kazu Hirata

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

	* cfg.c, tree-complex.c, config/frv/frv.c, config/i386/i386.c:
	Fix comment typos.

From-SVN: r102555
parent b2b800a0
2005-07-29 Kazu Hirata <kazu@codesourcery.com>
* cfg.c, tree-complex.c, config/frv/frv.c, config/i386/i386.c:
Fix comment typos.
2005-07-29 Diego Novillo <dnovillo@redhat.com> 2005-07-29 Diego Novillo <dnovillo@redhat.com>
* tree-ssa-dom.c (struct opt_stats_d): Add field num_iterations. * tree-ssa-dom.c (struct opt_stats_d): Add field num_iterations.
......
...@@ -926,7 +926,7 @@ scale_bbs_frequencies_int (basic_block *bbs, int nbbs, int num, int den) ...@@ -926,7 +926,7 @@ scale_bbs_frequencies_int (basic_block *bbs, int nbbs, int num, int den)
if (num > den) if (num > den)
return; return;
/* Assume that the users are producing the fraction from frequencies /* Assume that the users are producing the fraction from frequencies
that never grow far enought to risk arithmetic overflow. */ that never grow far enough to risk arithmetic overflow. */
gcc_assert (num < 65536); gcc_assert (num < 65536);
for (i = 0; i < nbbs; i++) for (i = 0; i < nbbs; i++)
{ {
......
...@@ -7838,7 +7838,7 @@ frv_optimize_membar_local (basic_block bb, struct frv_io *next_io, ...@@ -7838,7 +7838,7 @@ frv_optimize_membar_local (basic_block bb, struct frv_io *next_io,
is null if the membar has already been deleted. is null if the membar has already been deleted.
Note that the initialization here should only be needed to Note that the initialization here should only be needed to
supress warnings. */ suppress warnings. */
next_membar = 0; next_membar = 0;
/* USED_REGS is the set of registers that are used before the /* USED_REGS is the set of registers that are used before the
......
...@@ -17490,7 +17490,7 @@ ix86_expand_vector_extract (bool mmx_ok, rtx target, rtx vec, int elt) ...@@ -17490,7 +17490,7 @@ ix86_expand_vector_extract (bool mmx_ok, rtx target, rtx vec, int elt)
} }
} }
/* Expand a vector reduction on V4SFmode for SSE1. FN is the binar /* Expand a vector reduction on V4SFmode for SSE1. FN is the binary
pattern to reduce; DEST is the destination; IN is the input vector. */ pattern to reduce; DEST is the destination; IN is the input vector. */
void void
......
...@@ -502,7 +502,7 @@ set_component_ssa_name (tree ssa_name, bool imag_p, tree value) ...@@ -502,7 +502,7 @@ set_component_ssa_name (tree ssa_name, bool imag_p, tree value)
; ;
/* If we've nothing assigned, and the value we're given is already stable, /* If we've nothing assigned, and the value we're given is already stable,
then install that as the value for this SSA_NAME. This pre-emptively then install that as the value for this SSA_NAME. This preemptively
copy-propagates the value, which avoids unnecessary memory allocation. */ copy-propagates the value, which avoids unnecessary memory allocation. */
else if (is_gimple_min_invariant (value)) else if (is_gimple_min_invariant (value))
{ {
......
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