From: Jim Wilson Date: Mon, 2 May 1994 21:24:52 +0000 (-0700) Subject: (output_move_double): Always use split_double for the X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=09dcff637fea4a1cd22ded1dda471b89b24d7633;p=gcc.git (output_move_double): Always use split_double for the CNSTOP case. From-SVN: r7191 --- diff --git a/gcc/config/ns32k/ns32k.c b/gcc/config/ns32k/ns32k.c index 2012c7f481e..ba42b3320bc 100644 --- a/gcc/config/ns32k/ns32k.c +++ b/gcc/config/ns32k/ns32k.c @@ -298,12 +298,7 @@ output_move_double (operands) else if (optype1 == OFFSOP) latehalf[1] = adj_offsettable_operand (operands[1], 4); else if (optype1 == CNSTOP) - { - if (CONSTANT_P (operands[1])) - latehalf[1] = const0_rtx; - else if (GET_CODE (operands[1]) == CONST_DOUBLE) - split_double (operands[1], &operands[1], &latehalf[1]); - } + split_double (operands[1], &operands[1], &latehalf[1]); else latehalf[1] = operands[1];