re PR rtl-optimization/70703 (Regression in register usage on x86)

2017-04-05  Vladimir Makarov  <vmakarov@redhat.com>

	PR rtl-optimization/70703
	* ira-color.c (update_conflict_hard_regno_costs): Use
	HOST_WIDE_INT instead of long.

From-SVN: r246711
This commit is contained in:
Vladimir Makarov 2017-04-05 16:14:28 +00:00 committed by Vladimir Makarov
parent 891b30ac8d
commit ff216a48b7
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2017-04-05 Vladimir Makarov <vmakarov@redhat.com>
PR rtl-optimization/70703
* ira-color.c (update_conflict_hard_regno_costs): Use
HOST_WIDE_INT instead of long.
2017-04-05 Uros Bizjak <ubizjak@gmail.com> 2017-04-05 Uros Bizjak <ubizjak@gmail.com>
PR target/80298 PR target/80298

View File

@ -1522,7 +1522,7 @@ update_conflict_hard_regno_costs (int *costs, enum reg_class aclass,
index = ira_class_hard_reg_index[aclass][hard_regno]; index = ira_class_hard_reg_index[aclass][hard_regno];
if (index < 0) if (index < 0)
continue; continue;
cost = (int) (((long) conflict_costs [i] * mult) / div); cost = (int) (((HOST_WIDE_INT) conflict_costs [i] * mult) / div);
if (cost == 0) if (cost == 0)
continue; continue;
cont_p = true; cont_p = true;