diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-14 23:35:03 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-14 23:35:03 +0000 |
commit | f7406879ec3584b5c096cc9a32485d38a7dd95ff (patch) | |
tree | 8a48c8fe1483a04f942006f3b721d484ad02e186 /gcc/value-prof.c | |
parent | b336acd54731e4258e4848b1e3409493a2ae780b (diff) | |
download | gcc-f7406879ec3584b5c096cc9a32485d38a7dd95ff.tar.gz |
* global.c, tree-ssa-copy.c, tree-ssa-loop-ivopts.c,
value-prof.c: Fix comment typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90638 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/value-prof.c')
-rw-r--r-- | gcc/value-prof.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/value-prof.c b/gcc/value-prof.c index 6c6eed88dae..1663e64800d 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) |