Commit 3841a7f6 by Doug Evans

(output_shift, ASHIFTRT case): Do opposite shift as ASHIFT.

Delete LSHIFT case.

From-SVN: r7097
parent dfa11e05
......@@ -958,13 +958,11 @@ output_shift (string, reg, k, code)
{
case LSHIFTRT:
case ASHIFTRT:
code = LSHIFT;
code = ASHIFT;
break;
case ASHIFT:
code = ASHIFTRT;
break;
case LSHIFT:
code = LSHIFTRT;
default:
abort ();
}
......
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