diff options
author | Richard Stallman <rms@gnu.org> | 1993-05-09 14:51:29 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-05-09 14:51:29 +0000 |
commit | 008660af801c9598d7cda9204feebbee4324473a (patch) | |
tree | ccf08a565bc54853c2b8451eeab2041e9dfa8a52 /gcc | |
parent | 8c357b2d9626dec65ef4ded8f380d727db5c5ee9 (diff) | |
download | gcc-008660af801c9598d7cda9204feebbee4324473a.zip gcc-008660af801c9598d7cda9204feebbee4324473a.tar.gz gcc-008660af801c9598d7cda9204feebbee4324473a.tar.bz2 |
(mulhisi3, umulhisi3 matchers): Restrict range of constants allowed.
From-SVN: r4397
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/m68k/m68k.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/m68k/m68k.md b/gcc/config/m68k/m68k.md index 419eae4..987909f 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) |