2017-09-21 Richard Sandiford <richard.sandiford@linaro.org>
gcc/
* config/spu/spu.c (spu_sched_adjust_cost): Update after renaming
of insn_cost.
From-SVN: r253080
+2017-09-21 Richard Sandiford <richard.sandiford@linaro.org>
+
+ * config/spu/spu.c (spu_sched_adjust_cost): Update after renaming
+ of insn_cost.
+
2017-09-21 Martin Sebor <msebor@redhat.com>
* PR c/81882
jump_insn. We adjust here so higher cost insns will get scheduled
earlier. */
if (JUMP_P (insn) && dep_type == REG_DEP_ANTI)
- return insn_cost (dep_insn) - 3;
+ return insn_sched_cost (dep_insn) - 3;
return cost;
}