Commit 3a7c155d by Kazu Hirata Committed by Kazu Hirata

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

	* global.c, tree-ssa-copy.c, tree-ssa-loop-ivopts.c,
	value-prof.c: Fix comment typos.

From-SVN: r90638
parent efcc66f0
2004-11-14 Kazu Hirata <kazu@cs.umass.edu> 2004-11-14 Kazu Hirata <kazu@cs.umass.edu>
* cfgrtl.c: Fix a comment typo. * cfgrtl.c, global.c, tree-ssa-copy.c, tree-ssa-loop-ivopts.c,
value-prof.c: Fix comment typos.
2004-11-14 Stan Shebs <shebs@apple.com> 2004-11-14 Stan Shebs <shebs@apple.com>
......
...@@ -695,7 +695,7 @@ global_conflicts (void) ...@@ -695,7 +695,7 @@ global_conflicts (void)
since one hard reg can be used with various sizes. since one hard reg can be used with various sizes.
Therefore, we must require that all the hard regs Therefore, we must require that all the hard regs
implicitly live as part of a multi-word hard reg implicitly live as part of a multi-word hard reg
are explicitly marked in basic_block_live_at_start. */ be explicitly marked in basic_block_live_at_start. */
{ {
regset old = b->global_live_at_start; regset old = b->global_live_at_start;
......
...@@ -44,7 +44,7 @@ Boston, MA 02111-1307, USA. */ ...@@ -44,7 +44,7 @@ Boston, MA 02111-1307, USA. */
annotations up-to-date. annotations up-to-date.
We require that for any copy operation where the RHS and LHS have We require that for any copy operation where the RHS and LHS have
a non-null memory tag that the memory tag be the same. It is OK a non-null memory tag the memory tag be the same. It is OK
for one or both of the memory tags to be NULL. for one or both of the memory tags to be NULL.
We also require tracking if a variable is dereferenced in a load or We also require tracking if a variable is dereferenced in a load or
......
...@@ -1305,7 +1305,7 @@ idx_find_step (tree base, tree *idx, void *data) ...@@ -1305,7 +1305,7 @@ idx_find_step (tree base, tree *idx, void *data)
return false; return false;
/* If base is a component ref, require that the offset of the reference /* If base is a component ref, require that the offset of the reference
is invariant. */ be invariant. */
if (TREE_CODE (base) == COMPONENT_REF) if (TREE_CODE (base) == COMPONENT_REF)
{ {
off = component_ref_field_offset (base); off = component_ref_field_offset (base);
......
...@@ -595,7 +595,7 @@ divmod_fixed_value_transform (rtx insn) ...@@ -595,7 +595,7 @@ divmod_fixed_value_transform (rtx insn)
histogram = XEXP (histogram, 1); histogram = XEXP (histogram, 1);
all = INTVAL (XEXP (histogram, 0)); all = INTVAL (XEXP (histogram, 0));
/* We require that count is at least half of all; this means /* We require that count be at least half of all; this means
that for the transformation to fire the value must be constant that for the transformation to fire the value must be constant
at least 50% of time (and 75% gives the guarantee of usage). */ at least 50% of time (and 75% gives the guarantee of usage). */
if (!rtx_equal_p (op2, value) || 2 * count < all) if (!rtx_equal_p (op2, value) || 2 * count < all)
...@@ -969,7 +969,7 @@ speculative_prefetching_transform (rtx insn) ...@@ -969,7 +969,7 @@ speculative_prefetching_transform (rtx insn)
if (all < 4) if (all < 4)
return false; return false;
/* We require that count is at least half of all; this means /* We require that count be at least half of all; this means
that for the transformation to fire the value must be constant that for the transformation to fire the value must be constant
at least 50% of time (and 75% gives the guarantee of usage). */ at least 50% of time (and 75% gives the guarantee of usage). */
if (!rtx_equal_p (address, value) || 2 * count < all) if (!rtx_equal_p (address, value) || 2 * count < all)
......
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