(movdi): End by returning the last template; otherwise
authorJim Wilson <wilson@gcc.gnu.org>
Tue, 6 Apr 1993 19:26:49 +0000 (12:26 -0700)
committerJim Wilson <wilson@gcc.gnu.org>
Tue, 6 Apr 1993 19:26:49 +0000 (12:26 -0700)
we return junk for a template.

From-SVN: r4030

gcc/config/sparc/sparc.md

index e781e13ebe50e79a0720f385dfc429039f719818..cf98d4d4c22ff3c0a34603e641174d09e1269a11 100644 (file)
 
       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)
     {
 
       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 ();