Commit 99effc21 by Richard Stallman

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

From-SVN: r1904
parent 53e33d95
......@@ -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"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment