Commit 7b7499bf by Jim Wilson

(lshrsi3): Change gen_ashlsi3_d to gen_lshrsi3_d.

From-SVN: r11851
parent a80e4195
...@@ -951,7 +951,7 @@ ...@@ -951,7 +951,7 @@
{ {
rtx count = copy_to_mode_reg (SImode, operands[2]); rtx count = copy_to_mode_reg (SImode, operands[2]);
emit_insn (gen_negsi2 (count, count)); 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; DONE;
} }
if (! immediate_operand (operands[2], GET_MODE (operands[2]))) if (! immediate_operand (operands[2], GET_MODE (operands[2])))
......
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