diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-12-31 09:05:15 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-12-31 09:05:15 +0000 |
commit | 03252d17be1c73a1b11ad2cf161ec8535a4ab4a0 (patch) | |
tree | 706dbb837e05b99f9e574d57c403dc2c99fd3aa4 /gcc/config/mn10200 | |
parent | a6385be139935d5e10d0d78d282ab4ebd8691d7b (diff) | |
download | gcc-03252d17be1c73a1b11ad2cf161ec8535a4ab4a0.tar.gz |
* mn10200.md (addsi3, subsi3): Fix thinkos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17266 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/mn10200')
-rw-r--r-- | gcc/config/mn10200/mn10200.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/mn10200/mn10200.md b/gcc/config/mn10200/mn10200.md index 9dc753c3023..a47332a1375 100644 --- a/gcc/config/mn10200/mn10200.md +++ b/gcc/config/mn10200/mn10200.md @@ -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 |