diff options
| author | kyukhin <kyukhin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-16 08:52:08 +0000 |
|---|---|---|
| committer | kyukhin <kyukhin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-16 08:52:08 +0000 |
| commit | b6fc5e7229ae6ab1c313a347a010794cbda8778b (patch) | |
| tree | 9e44902f8c27a29f585caeb06691b7bd1763d6d1 | |
| parent | 5b26a9e393eb1146b3f3940c762acff9acd5aaef (diff) | |
| download | ppe42-gcc-b6fc5e7229ae6ab1c313a347a010794cbda8778b.tar.gz ppe42-gcc-b6fc5e7229ae6ab1c313a347a010794cbda8778b.zip | |
* config/i386/i386.c (slm_cost): Fix imul cost for HI.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@206010 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 3 | ||||
| -rw-r--r-- | gcc/config/i386/i386.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 95d65748132..accfc234e32 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,6 @@ +2013-12-16 Yuri Rumyantsev <ysrumyan@gmail.com> + * config/i386/i386.c (slm_cost): Fix imul cost for HI. + 2013-12-16 Jakub Jelinek <jakub@redhat.com> PR middle-end/58956 diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index ecf5e0b1bc0..f7dfb41c614 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -1607,7 +1607,7 @@ struct processor_costs atom_cost = { COSTS_N_INSNS (1), /* variable shift costs */ COSTS_N_INSNS (1), /* constant shift costs */ {COSTS_N_INSNS (3), /* cost of starting multiply for QI */ - COSTS_N_INSNS (4), /* HI */ + COSTS_N_INSNS (3), /* HI */ COSTS_N_INSNS (3), /* SI */ COSTS_N_INSNS (4), /* DI */ COSTS_N_INSNS (2)}, /* other */ |

