Commit 5541136b by Richard Kenner

(subst, shift and rotate cases): Test value of SHIFT_COUNT_TRUNCATED

if it is defined.

From-SVN: r5730
parent 1ebecb64
......@@ -4674,7 +4674,7 @@ subst (x, from, to, in_dest, unique_copy)
}
#ifdef SHIFT_COUNT_TRUNCATED
else if (GET_CODE (XEXP (x, 1)) != REG)
else if (SHIFT_COUNT_TRUNCATED && GET_CODE (XEXP (x, 1)) != REG)
SUBST (XEXP (x, 1),
force_to_mode (XEXP (x, 1), GET_MODE (x),
((HOST_WIDE_INT) 1
......
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