(init_expmed): Use register 10000, not FIRST_PSEUDO_REGISTER that gets special treatment in rtx_cost.

(init_expmed): Use register 10000, not FIRST_PSEUDO_REGISTER
that gets special treatment in rtx_cost.
(expand_mult): Decrease max cost to 8.

From-SVN: r5897
This commit is contained in:
Richard Stallman 1993-10-26 17:39:52 +00:00
parent ad96180a11
commit d4c6dfec80
1 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ init_expmed ()
char *free_point;
/* This is "some random pseudo register" for purposes of calling recog
to see what insns exist. */
rtx reg = gen_rtx (REG, word_mode, FIRST_PSEUDO_REGISTER);
rtx reg = gen_rtx (REG, word_mode, 10000);
rtx shift_insn, shiftadd_insn, shiftsub_insn;
int dummy;
int m;
@ -2100,7 +2100,7 @@ expand_mult (mode, op0, op1, target, unsignedp)
vice versa. */
mult_cost = rtx_cost (gen_rtx (MULT, mode, op0, op1), SET);
mult_cost = MIN (12 * add_cost, mult_cost);
mult_cost = MIN (8 * add_cost, mult_cost);
synth_mult (&alg, val, mult_cost);
synth_mult (&neg_alg, - val,