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

From-SVN: r17266
This commit is contained in:
Jeffrey A Law 1997-12-31 09:05:15 +00:00 committed by Jeff Law
parent 194faace59
commit 1b31097e5d
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
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>
* sparc.h (ASM_OUTPUT_MI_THUNK): Move %o7 through %g1 instead of

View File

@ -405,7 +405,7 @@
insns = get_insns ();
end_sequence ();
emit_libcall_block (insns, operands[0], ret,
gen_rtx (ASHIFT, SImode, operands[1], operands[2]));
gen_rtx (PLUS, SImode, operands[1], operands[2]));
DONE;
}
else
@ -483,7 +483,7 @@
insns = get_insns ();
end_sequence ();
emit_libcall_block (insns, operands[0], ret,
gen_rtx (ASHIFT, SImode, operands[1], operands[2]));
gen_rtx (MINUS, SImode, operands[1], operands[2]));
DONE;
}
else