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
+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>
PR target/80298
index = ira_class_hard_reg_index[aclass][hard_regno];
if (index < 0)
continue;
- cost = (int) (((long) conflict_costs [i] * mult) / div);
+ cost = (int) (((HOST_WIDE_INT) conflict_costs [i] * mult) / div);
if (cost == 0)
continue;
cont_p = true;