diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1996-04-18 17:56:37 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1996-04-18 17:56:37 -0700 |
commit | 7b7499bf3517bf82b9cfc8a6a2c0621e9e7f8b89 (patch) | |
tree | 74644a4d8518b6eb44430183a7390bd74d55a110 /gcc/config/sh | |
parent | a80e41955ad1262ea9e923ca6ea3044fe005e8fa (diff) | |
download | gcc-7b7499bf3517bf82b9cfc8a6a2c0621e9e7f8b89.zip gcc-7b7499bf3517bf82b9cfc8a6a2c0621e9e7f8b89.tar.gz gcc-7b7499bf3517bf82b9cfc8a6a2c0621e9e7f8b89.tar.bz2 |
(lshrsi3): Change gen_ashlsi3_d to gen_lshrsi3_d.
From-SVN: r11851
Diffstat (limited to 'gcc/config/sh')
-rw-r--r-- | gcc/config/sh/sh.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/sh/sh.md b/gcc/config/sh/sh.md index aba707e..b0ab67e 100644 --- a/gcc/config/sh/sh.md +++ b/gcc/config/sh/sh.md @@ -951,7 +951,7 @@ { rtx count = copy_to_mode_reg (SImode, operands[2]); emit_insn (gen_negsi2 (count, count)); - emit_insn (gen_ashlsi3_d (operands[0], operands[1], count)); + emit_insn (gen_lshrsi3_d (operands[0], operands[1], count)); DONE; } if (! immediate_operand (operands[2], GET_MODE (operands[2]))) |