From 8131413b99b0d7b6a3e3bc1d396b5b98400d6306 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Wed, 31 May 1995 21:07:20 -0400 Subject: [PATCH] (umulsi3_highpart): Pass correct number of arguments to const_uint32_operand. (smulsi3_highpart): Likewise. From-SVN: r9858 --- gcc/config/m68k/m68k.md | 4 ++-- 1 file 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], -- 2.7.4