]> gcc.gnu.org Git - gcc.git/commitdiff
(init_expmed): Fix typo in last change.
authorTorbjorn Granlund <tege@gnu.org>
Sat, 20 Mar 1993 16:22:37 +0000 (16:22 +0000)
committerTorbjorn Granlund <tege@gnu.org>
Sat, 20 Mar 1993 16:22:37 +0000 (16:22 +0000)
From-SVN: r3801

gcc/expmed.c

index 18a499f69aa4a59d9550fe692d9d24e6040eee24..68f06071a4721373e7357c7c8544c56f6aa18b2d 100644 (file)
@@ -109,12 +109,12 @@ init_expmed ()
       XEXP (XEXP (SET_SRC (PATTERN (shiftadd_insn)), 0), 1)
        = GEN_INT ((HOST_WIDE_INT) 1 << m);
       if (recog (PATTERN (shiftadd_insn), shiftadd_insn, &dummy) >= 0)
-       shiftadd_cost[m] = rtx_cost (PATTERN (SET_SRC (shiftadd_insn)), SET);
+       shiftadd_cost[m] = rtx_cost (SET_SRC (PATTERN (shiftadd_insn)), SET);
 
       XEXP (XEXP (SET_SRC (PATTERN (shiftsub_insn)), 0), 1)
        = GEN_INT ((HOST_WIDE_INT) 1 << m);
       if (recog (PATTERN (shiftsub_insn), shiftsub_insn, &dummy) >= 0)
-       shiftsub_cost[m] = rtx_cost (PATTERN (SET_SRC (shiftsub_insn)), SET);
+       shiftsub_cost[m] = rtx_cost (SET_SRC (PATTERN (shiftsub_insn)), SET);
     }
 
   mult_cost = rtx_cost (gen_rtx (MULT, word_mode, reg, reg), SET);
This page took 0.063479 seconds and 5 git commands to generate.