diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-11-16 23:26:21 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-11-16 23:26:21 +0000 |
commit | a37739c10ee16f9972fd059486971b572a67b545 (patch) | |
tree | 3debab0fef36871a46e30a7f10f099287d239727 /gcc/expmed.c | |
parent | d3f2f8aec2d6873c7ba01bc0e0b6143af1a3702a (diff) | |
download | gcc-a37739c10ee16f9972fd059486971b572a67b545.zip gcc-a37739c10ee16f9972fd059486971b572a67b545.tar.gz gcc-a37739c10ee16f9972fd059486971b572a67b545.tar.bz2 |
* expmed.c, ra-colorize.c: Fix comment typos.
From-SVN: r90771
Diffstat (limited to 'gcc/expmed.c')
-rw-r--r-- | gcc/expmed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/expmed.c b/gcc/expmed.c index b2e6235..033d949 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]; |