2004-07-20 David S. Miller <davem@nuts.davemloft.net>
* config/sparc/sparc.c (sparc_rtx_costs case MULT): Emit
enormous cost if not TARGET_HARD_MUL.
From-SVN: r84992
+2004-07-20 David S. Miller <davem@nuts.davemloft.net>
+
+ * config/sparc/sparc.c (sparc_rtx_costs case MULT): Emit
+ enormous cost if not TARGET_HARD_MUL.
+
2004-07-20 Andrew Pinski <apinski@apple.com>
PR target/16557
case MULT:
if (float_mode_p)
*total = sparc_costs->float_mul;
+ else if (! TARGET_HARD_MUL)
+ return COSTS_N_INSNS (25);
else
{
int bit_cost;