re PR rtl-optimization/78120 (If conversion no longer performed)
authorBernd Schmidt <bernds@redhat.com>
Thu, 24 Nov 2016 12:17:52 +0000 (12:17 +0000)
committerBernd Schmidt <bernds@gcc.gnu.org>
Thu, 24 Nov 2016 12:17:52 +0000 (12:17 +0000)
PR rtl-optimization/78120
* rtlanal.c (insn_rtx_cost): Use set_rtx_cost.

From-SVN: r242833

gcc/ChangeLog
gcc/rtlanal.c

index 8d9de43233e380a4f1d177d430fd5b87ac277ad7..7b8d38205ac917fb2dcef9761e9d611cd3951cb8 100644 (file)
@@ -1,5 +1,8 @@
 2016-11-24  Bernd Schmidt  <bschmidt@redhat.com>
 
+       PR rtl-optimization/78120
+       * rtlanal.c (insn_rtx_cost): Use set_rtx_cost.
+
        PR rtl-optimization/78120
        * config/i386/i386.c (ix86_rtx_costs): Fully handle SETs.
 
index 17dbb1eaeb10809b2416052eda4ed8bd3f015455..7521a4ece2df3afff68f82bd499804ba4b71cfd4 100644 (file)
@@ -5237,7 +5237,7 @@ insn_rtx_cost (rtx pat, bool speed)
   else
     return 0;
 
-  cost = set_src_cost (SET_SRC (set), GET_MODE (SET_DEST (set)), speed);
+  cost = set_rtx_cost (set, speed);
   return cost > 0 ? cost : COSTS_N_INSNS (1);
 }