(mulsi3): Use emit_insn on results of gen fcns. Return with DONE.

From-SVN: r1904
This commit is contained in:
Richard Stallman 1992-08-20 04:53:06 +00:00
parent 53e33d9533
commit 99effc21d4

View File

@ -1700,9 +1700,10 @@
"
{
if (WORDS_BIG_ENDIAN)
return gen_mulsi3_big (operands[0], operands[1], operands[2]);
emit_insn (gen_mulsi3_big (operands[0], operands[1], operands[2]));
else
return gen_mulsi3_little (operands[0], operands[1], operands[2]);
emit_insn (gen_mulsi3_little (operands[0], operands[1], operands[2]));
DONE;
}")
(define_expand "mulsi3_little"