aboutsummaryrefslogtreecommitdiff
path: root/gcc/value-prof.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-11-14 23:35:03 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-11-14 23:35:03 +0000
commit3a7c155d2e36bda69cb68c2f6f5105e256878506 (patch)
tree8a48c8fe1483a04f942006f3b721d484ad02e186 /gcc/value-prof.c
parentefcc66f02cd0b34ee0e2a08312d7ab8e0405a556 (diff)
downloadgcc-3a7c155d2e36bda69cb68c2f6f5105e256878506.zip
gcc-3a7c155d2e36bda69cb68c2f6f5105e256878506.tar.gz
gcc-3a7c155d2e36bda69cb68c2f6f5105e256878506.tar.bz2
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
Diffstat (limited to 'gcc/value-prof.c')
-rw-r--r--gcc/value-prof.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/value-prof.c b/gcc/value-prof.c
index 6c6eed8..1663e64 100644
--- a/gcc/value-prof.c
+++ b/gcc/value-prof.c
@@ -595,7 +595,7 @@ divmod_fixed_value_transform (rtx insn)
histogram = XEXP (histogram, 1);
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
at least 50% of time (and 75% gives the guarantee of usage). */
if (!rtx_equal_p (op2, value) || 2 * count < all)
@@ -969,7 +969,7 @@ speculative_prefetching_transform (rtx insn)
if (all < 4)
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
at least 50% of time (and 75% gives the guarantee of usage). */
if (!rtx_equal_p (address, value) || 2 * count < all)