From 008660af801c9598d7cda9204feebbee4324473a Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Sun, 9 May 1993 14:51:29 +0000 Subject: [PATCH] (mulhisi3, umulhisi3 matchers): Restrict range of constants allowed. From-SVN: r4397 --- gcc/config/m68k/m68k.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/m68k/m68k.md b/gcc/config/m68k/m68k.md index 419eae4735e..987909fb0dd 100644 --- a/gcc/config/m68k/m68k.md +++ b/gcc/config/m68k/m68k.md @@ -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) -- 2.30.2