From: Richard Kenner Date: Thu, 1 Jun 1995 01:07:20 +0000 (-0400) Subject: (umulsi3_highpart): Pass correct number of arguments to const_uint32_operand. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8131413b99b0d7b6a3e3bc1d396b5b98400d6306;p=gcc.git (umulsi3_highpart): Pass correct number of arguments to const_uint32_operand. (smulsi3_highpart): Likewise. From-SVN: r9858 --- diff --git a/gcc/config/m68k/m68k.md b/gcc/config/m68k/m68k.md index fab11593df0..e978d2b5dd3 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],