mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-19 00:01:21 +08:00
re PR bootstrap/49354 (bootstrap failure)
PR bootstrap/49354 * ira-costs.c (setup_regno_cost_classes_by_mode): Add missing cast to last assignment. From-SVN: r174878
This commit is contained in:
parent
b125ad45da
commit
3f91c962fd
@ -1,3 +1,9 @@
|
||||
2011-06-10 Hans-Peter Nilsson <hp@axis.com>
|
||||
|
||||
PR bootstrap/49354
|
||||
* ira-costs.c (setup_regno_cost_classes_by_mode): Add missing cast
|
||||
to last assignment.
|
||||
|
||||
2011-06-09 Jan Hubicka <jh@suse.cz>
|
||||
|
||||
* cgraphunit.c (cgraph_reset_node): Do not set redefined_extern_inline;
|
||||
|
@ -300,7 +300,7 @@ setup_regno_cost_classes_by_mode (int regno, enum machine_mode mode)
|
||||
*slot = classes_ptr;
|
||||
}
|
||||
else
|
||||
classes_ptr = *slot;
|
||||
classes_ptr = (cost_classes_t) *slot;
|
||||
cost_classes_mode_cache[mode] = (cost_classes_t) *slot;
|
||||
}
|
||||
regno_cost_classes[regno] = classes_ptr;
|
||||
|
Loading…
x
Reference in New Issue
Block a user