diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-31 21:07:20 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-31 21:07:20 -0400 |
commit | 8131413b99b0d7b6a3e3bc1d396b5b98400d6306 (patch) | |
tree | dc56c0601b37d849a93d97531ece395ac1fa0a1a | |
parent | d8f1376cd944b22104d586a65a0026fbdceb622d (diff) | |
download | gcc-8131413b99b0d7b6a3e3bc1d396b5b98400d6306.zip gcc-8131413b99b0d7b6a3e3bc1d396b5b98400d6306.tar.gz gcc-8131413b99b0d7b6a3e3bc1d396b5b98400d6306.tar.bz2 |
(umulsi3_highpart): Pass correct number of arguments to const_uint32_operand.
(smulsi3_highpart): Likewise.
From-SVN: r9858
-rw-r--r-- | gcc/config/m68k/m68k.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/m68k/m68k.md b/gcc/config/m68k/m68k.md index fab1159..e978d2b 100644 --- a/gcc/config/m68k/m68k.md +++ b/gcc/config/m68k/m68k.md @@ -3023,7 +3023,7 @@ if (GET_CODE (operands[2]) == CONST_INT || GET_CODE (operands[2]) == CONST_DOUBLE) { - if (! const_uint32_operand (operands[2])) + if (! const_uint32_operand (operands[2], VOIDmode)) abort (); /* We have to adjust the operand order for the matching constraints. */ emit_insn (gen_const_umulsi3_highpart (operands[0], operands[3], @@ -3070,7 +3070,7 @@ if (GET_CODE (operands[2]) == CONST_INT || GET_CODE (operands[2]) == CONST_DOUBLE) { - if (! const_sint32_operand (operands[2])) + if (! const_sint32_operand (operands[2], VOIDmode)) abort (); /* We have to adjust the operand order for the matching constraints. */ emit_insn (gen_const_smulsi3_highpart (operands[0], operands[3], |