diff options
author | Paolo Carlini <paolo@gcc.gnu.org> | 2009-11-24 16:53:17 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2009-11-24 16:53:17 +0000 |
commit | 038dc49afffb06ab20dd7bcc1be427fc668e6f80 (patch) | |
tree | 6be018fb02b4d16d658f952c905e38c1c1c753d1 /gcc/ira-costs.c | |
parent | 356aaf8b70407acd2057011d0b051e0cadfeda62 (diff) | |
download | gcc-038dc49afffb06ab20dd7bcc1be427fc668e6f80.tar.gz |
[multiple changes]
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.
From-SVN: r154505
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; |