From: Jim Wilson Date: Tue, 6 Apr 1993 19:26:49 +0000 (-0700) Subject: (movdi): End by returning the last template; otherwise X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=80f9d7f2ddd86aa0875ae433b11ffc41e5505513;p=gcc.git (movdi): End by returning the last template; otherwise we return junk for a template. From-SVN: r4030 --- diff --git a/gcc/config/sparc/sparc.md b/gcc/config/sparc/sparc.md index e781e13ebe5..cf98d4d4c22 100644 --- a/gcc/config/sparc/sparc.md +++ b/gcc/config/sparc/sparc.md @@ -851,9 +851,9 @@ operands[0] = operand_subword (op0, 0, 0, DImode); if (INTVAL (op1) < 0) - output_asm_insn (\"mov -1,%0\", operands); + return \"mov -1,%0\"; else - output_asm_insn (\"mov 0,%0\", operands); + return \"mov 0,%0\"; } else if (GET_CODE (op1) == CONST_DOUBLE) { @@ -863,7 +863,7 @@ operands[0] = operand_subword (op0, 0, 0, DImode); operands[1] = gen_rtx (CONST_INT, VOIDmode, CONST_DOUBLE_HIGH (op1)); - output_asm_insn (singlemove_string (operands), operands); + return singlemove_string (operands); } else abort ();