diff options
| author | davem <davem@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-21 21:42:29 +0000 |
|---|---|---|
| committer | davem <davem@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-21 21:42:29 +0000 |
| commit | e2e173ac79124b41dd69b8f1323782aee89ac789 (patch) | |
| tree | 8636cfc97c4ec3d579477774c8be9506e4d39810 | |
| parent | 491e04eff90c939f98cbd25a5f29dbdbc1a9e11d (diff) | |
| download | ppe42-gcc-e2e173ac79124b41dd69b8f1323782aee89ac789.tar.gz ppe42-gcc-e2e173ac79124b41dd69b8f1323782aee89ac789.zip | |
2004-07-21 David S. Miller <davem@nuts.davemloft.net>
* config/sparc/sparc.c (sparc_rtx_costs): Fix typo in previous
commit.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85020 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/sparc/sparc.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1904899db2f..40ebced7609 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-07-21 David S. Miller <davem@nuts.davemloft.net> + + * config/sparc/sparc.c (sparc_rtx_costs): Fix typo in previous + commit. + 2004-07-21 Eric Christopher <echristo@redhat.com> * builtins.c (expand_builtin_setjmp_receiver): Fix comment for code diff --git a/gcc/config/sparc/sparc.c b/gcc/config/sparc/sparc.c index 97ef0542893..fccfd3fff2c 100644 --- a/gcc/config/sparc/sparc.c +++ b/gcc/config/sparc/sparc.c @@ -8384,7 +8384,7 @@ sparc_rtx_costs (rtx x, int code, int outer_code, int *total) if (float_mode_p) *total = sparc_costs->float_mul; else if (! TARGET_HARD_MUL) - return COSTS_N_INSNS (25); + *total = COSTS_N_INSNS (25); else { int bit_cost; |

