Commit 008660af by Richard Stallman

(mulhisi3, umulhisi3 matchers): Restrict range of constants allowed.

From-SVN: r4397
parent 8c357b2d
......@@ -2403,7 +2403,7 @@
(mult:SI (sign_extend:SI
(match_operand:HI 1 "nonimmediate_operand" "%0"))
(match_operand:SI 2 "const_int_operand" "n")))]
"INTVAL (operands[2]) >= -0x10000 && INTVAL (operands[2]) <= 0x7fff"
"INTVAL (operands[2]) >= -0x8000 && INTVAL (operands[2]) <= 0x7fff"
"*
{
#if defined(MOTOROLA) && !defined(CRDS)
......
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