Fix spu build after r253072
authorRichard Sandiford <richard.sandiford@linaro.org>
Thu, 21 Sep 2017 21:36:27 +0000 (21:36 +0000)
committerRichard Sandiford <rsandifo@gcc.gnu.org>
Thu, 21 Sep 2017 21:36:27 +0000 (21:36 +0000)
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

gcc/ChangeLog
gcc/config/spu/spu.c

index baaafa7327a25b195ac91f0424f27b79dd1e7195..36d5ec05a1f2cbfb9f95e221af1483e69fbd3e96 100644 (file)
@@ -1,3 +1,8 @@
+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
index 1fc997722865ae4ba02496b4906be680d4000f20..ed8047dcd3dc4295aaefe78d2ffa7abd7ecf2500 100644 (file)
@@ -3055,7 +3055,7 @@ spu_sched_adjust_cost (rtx_insn *insn, int dep_type, rtx_insn *dep_insn,
      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;
 }