From 16a257559f9f3b7642823a440d925b9a11b947fe Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sat, 29 Jul 1995 09:58:43 -0400 Subject: [PATCH] (output_move_double): Now handles CONST_INT parameters properly. From-SVN: r10201 --- gcc/config/pdp11/pdp11.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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]; -- 2.30.2