Commit 1b31097e by Jeffrey A Law Committed by Jeff Law

* mn10200.md (addsi3, subsi3): Fix thinkos.

From-SVN: r17266
parent 194faace
Wed Dec 31 10:05:44 1997 Jeffrey A Law (law@cygnus.com)
* mn10200.md (addsi3, subsi3): Fix thinkos.
Tue Dec 30 00:04:49 1997 Richard Henderson <rth@cygnus.com> Tue Dec 30 00:04:49 1997 Richard Henderson <rth@cygnus.com>
* sparc.h (ASM_OUTPUT_MI_THUNK): Move %o7 through %g1 instead of * sparc.h (ASM_OUTPUT_MI_THUNK): Move %o7 through %g1 instead of
......
...@@ -405,7 +405,7 @@ ...@@ -405,7 +405,7 @@
insns = get_insns (); insns = get_insns ();
end_sequence (); end_sequence ();
emit_libcall_block (insns, operands[0], ret, emit_libcall_block (insns, operands[0], ret,
gen_rtx (ASHIFT, SImode, operands[1], operands[2])); gen_rtx (PLUS, SImode, operands[1], operands[2]));
DONE; DONE;
} }
else else
...@@ -483,7 +483,7 @@ ...@@ -483,7 +483,7 @@
insns = get_insns (); insns = get_insns ();
end_sequence (); end_sequence ();
emit_libcall_block (insns, operands[0], ret, emit_libcall_block (insns, operands[0], ret,
gen_rtx (ASHIFT, SImode, operands[1], operands[2])); gen_rtx (MINUS, SImode, operands[1], operands[2]));
DONE; DONE;
} }
else else
......
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