summaryrefslogtreecommitdiff
path: root/gcc/value-prof.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2004-09-05 15:24:15 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2004-09-05 15:24:15 +0000
commit912757687975fdabbb85e7f10a96a136347aa43a (patch)
treedb2d4b4b49c75785725db3dc511e5abdabfec0c9 /gcc/value-prof.c
parent690a81bd5f175cc0e0d0e63f3228703fd3623e10 (diff)
downloadgcc-912757687975fdabbb85e7f10a96a136347aa43a.tar.gz
* c-common.c, cfgexpand.c, cgraphunit.c, defaults.h,
et-forest.c, expr.c, gimplify.c, global.c, gthr-lynx.h, hard-reg-set.h, modulo-sched.c, optabs.c, postreload-gcse.c, tree-data-ref.c, tree-flow.h, tree-if-conv.c, tree-inline.c, tree-sra.c, tree-ssa-loop-im.c, tree-ssa-loop-ivopts.c, tree-ssa-loop-niter.c, tree-ssa-operands.c, tree-ssa-operands.h, tree-ssa-propagate.c, tree-ssa-propagate.h, tree-ssa-threadupdate.c, value-prof.c, vec.c, vec.h: Fix comment typos. Follow spelling conventions. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87104 138bc75d-0d04-0410-961f-82ee72b054a4
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 a01c1c9b2da..3f9caeb223c 100644
--- a/gcc/value-prof.c
+++ b/gcc/value-prof.c
@@ -62,7 +62,7 @@ static struct value_prof_hooks *value_prof_hooks;
-- list of counters starting from the first one. */
/* For speculative prefetching, the range in that we do not prefetch (because
- we assume that it will be in cache anyway). The assymetry between min and
+ we assume that it will be in cache anyway). The asymmetry between min and
max range is trying to reflect the fact that the sequential prefetching
of the data is commonly done directly by hardware. Nevertheless, these
values are just a guess and should of course be target-specific. */
@@ -971,7 +971,7 @@ speculative_prefetching_transform (rtx insn)
/* We require that count is 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 garantee of usage). */
+ at least 50% of time (and 75% gives the guarantee of usage). */
if (!rtx_equal_p (address, value) || 2 * count < all)
return false;