diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-16 23:26:21 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-16 23:26:21 +0000 |
commit | 1861ff83608e960818456576f8e577db1531e960 (patch) | |
tree | 3debab0fef36871a46e30a7f10f099287d239727 | |
parent | a25e3a7b2dc06083694e2ef18a06e33a821f1e3b (diff) | |
download | gcc-1861ff83608e960818456576f8e577db1531e960.tar.gz |
* expmed.c, ra-colorize.c: Fix comment typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90771 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/expmed.c | 2 | ||||
-rw-r--r-- | gcc/ra-colorize.c | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 600089338f6..da8619d6bb0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-11-16 Kazu Hirata <kazu@cs.umass.edu> + + * expmed.c, ra-colorize.c: Fix comment typos. + 2004-11-16 Daniel Jacobowitz <dan@codesourcery.com> Mark Mitchell <mark@codesourcery.com> diff --git a/gcc/expmed.c b/gcc/expmed.c index b2e62350b1d..033d94952be 100644 --- a/gcc/expmed.c +++ b/gcc/expmed.c @@ -2555,7 +2555,7 @@ synth_mult (struct algorithm *alg_out, unsigned HOST_WIDE_INT t, /* If the target has a cheap shift-and-add instruction use that in preference to a shift insn followed by an add insn. Assume that the shift-and-add is "atomic" with a latency - equal to it's cost, otherwise assume that on superscalar + equal to its cost, otherwise assume that on superscalar hardware the shift may be executed concurrently with the earlier steps in the algorithm. */ op_cost = add_cost[mode] + shift_cost[mode][m]; diff --git a/gcc/ra-colorize.c b/gcc/ra-colorize.c index 6d7980cc2b3..08bd960d24c 100644 --- a/gcc/ra-colorize.c +++ b/gcc/ra-colorize.c @@ -1323,7 +1323,7 @@ colorize_one_web (struct web *web, int hard) usable_regs of this web (which is probably larger than that of the preferred or alternate class). All searches first try to find a non-call-clobbered hard-reg. - XXX this should be more finegraned... First look into preferred + XXX this should be more fine grained... First look into preferred non-callclobbered hardregs, then _if_ the web crosses calls, in alternate non-cc hardregs, and only _then_ also in preferred cc hardregs (and alternate ones). Currently we don't track the number |