diff options
author | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-11-24 16:53:17 +0000 |
---|---|---|
committer | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-11-24 16:53:17 +0000 |
commit | d52d7a3afb8f4fb1243dfd399400f16e57214d35 (patch) | |
tree | 6be018fb02b4d16d658f952c905e38c1c1c753d1 /gcc/ira-costs.c | |
parent | df9d2e34d3ee6a79dde156c97d56935b7d7371f7 (diff) | |
download | gcc-d52d7a3afb8f4fb1243dfd399400f16e57214d35.tar.gz |
2009-11-24 Michael Matz <matz@suse.de>
* expr.c (set_storage_via_libcall): Fix build_call_expr call.
2009-11-24 David Binderman <dcb314@hotmail.com>
* expr.c (store_field): Remove set but not used local variable
width_mask.
(expand_expr_real_2): Remove treeop2.
* gcse.c (update_ld_motion_stores): Remove new_rtx.
* haifa-sched.c (max_issue): Remove points.
(sched_create_recovery_edges): Remove e.
* ira-costs.c (setup_allocno_cover_class_and_costs): Remove mode.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@154505 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ira-costs.c')
-rw-r--r-- | gcc/ira-costs.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/ira-costs.c b/gcc/ira-costs.c index 4b9d29f1db1..f74a2cac433 100644 --- a/gcc/ira-costs.c +++ b/gcc/ira-costs.c @@ -1534,7 +1534,6 @@ setup_allocno_cover_class_and_costs (void) int i, j, n, regno, num; int *reg_costs; enum reg_class cover_class, rclass; - enum machine_mode mode; ira_allocno_t a; ira_allocno_iterator ai; @@ -1542,7 +1541,6 @@ setup_allocno_cover_class_and_costs (void) FOR_EACH_ALLOCNO (a, ai) { i = ALLOCNO_NUM (a); - mode = ALLOCNO_MODE (a); cover_class = regno_cover_class[ALLOCNO_REGNO (a)]; ira_assert (pref[i] == NO_REGS || cover_class != NO_REGS); ALLOCNO_MEMORY_COST (a) = COSTS (costs, i)->mem_cost; |