Commit d4d2b13f by Richard Kenner

(force_to_mode, case IOR): Fix typo in commuting IOR and LSHIFTRT.

From-SVN: r11313
parent 10853551
......@@ -5933,7 +5933,8 @@ force_to_mode (x, mode, mask, reg, just_select)
<< INTVAL (XEXP (XEXP (x, 0), 1)));
temp = gen_binary (GET_CODE (x), GET_MODE (x),
XEXP (XEXP (x, 0), 0), temp);
x = gen_binary (LSHIFTRT, GET_MODE (x), temp, XEXP (x, 1));
x = gen_binary (LSHIFTRT, GET_MODE (x), temp,
XEXP (XEXP (x, 0), 1));
return force_to_mode (x, mode, mask, reg, next_select);
}
......
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