From: Richard Kenner Date: Sat, 29 Jul 1995 13:58:43 +0000 (-0400) Subject: (output_move_double): Now handles CONST_INT parameters properly. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=16a257559f9f3b7642823a440d925b9a11b947fe;p=gcc.git (output_move_double): Now handles CONST_INT parameters properly. From-SVN: r10201 --- diff --git a/gcc/config/pdp11/pdp11.c b/gcc/config/pdp11/pdp11.c index 38f1c8655a6..ec1e080661f 100644 --- a/gcc/config/pdp11/pdp11.c +++ b/gcc/config/pdp11/pdp11.c @@ -1,5 +1,5 @@ /* Subroutines for gcc2 for pdp11. - Copyright (C) 1994 Free Software Foundation, Inc. + Copyright (C) 1994, 1995 Free Software Foundation, Inc. Contributed by Michael K. Gschwind (mike@vlsivie.tuwien.ac.at). This file is part of GNU CC. @@ -649,6 +649,13 @@ output_move_quad (operands) CONST_DOUBLE_LOW (operands[1])); #endif /* HOST_WORDS_BIG_ENDIAN */ } + else if (GET_CODE(operands[1]) == CONST_INT) + { + latehalf[1] = gen_rtx (CONST_INT, VOIDmode, 0); + } + else + abort(); + } else latehalf[1] = operands[1];