diff options
author | jasonwucj <jasonwucj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-28 09:03:25 +0000 |
---|---|---|
committer | jasonwucj <jasonwucj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-28 09:03:25 +0000 |
commit | c3533dd89e08e6d8956d3dca7eba96826c172695 (patch) | |
tree | 896a1dbfe4afbeb63ac945bb158577391c51ca39 /gcc/config/nds32 | |
parent | 683539f6f6040795b4e06d79bd591fa1ce70b234 (diff) | |
download | gcc-c3533dd89e08e6d8956d3dca7eba96826c172695.tar.gz |
* config/nds32/nds32.c (nds32_rtx_costs): Adjust MULT cost if it is
not optimized for size.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@205478 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/nds32')
-rw-r--r-- | gcc/config/nds32/nds32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/nds32/nds32.c b/gcc/config/nds32/nds32.c index 008f088df57..124b1af8a2c 100644 --- a/gcc/config/nds32/nds32.c +++ b/gcc/config/nds32/nds32.c @@ -2471,7 +2471,7 @@ performance_cost: break; case MULT: - *total = COSTS_N_INSNS (5); + *total = COSTS_N_INSNS (1); break; case DIV: |