From: Jan Hubicka Date: Wed, 14 Mar 2001 18:31:48 +0000 (+0100) Subject: * expr.c (emit_move_insn_1): Guard PUSH_ROUNDING use by ifdef. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=79ce92d772910be427730939d4691403245a4440;p=gcc.git * expr.c (emit_move_insn_1): Guard PUSH_ROUNDING use by ifdef. From-SVN: r40462 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dd2818dadbb..140cb60a4c5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Wed Mar 14 19:29:50 CET 2001 Jan Hubicka + + * expr.c (emit_move_insn_1): Guard PUSH_ROUNDING use by ifdef. + 2001-03-14 Jakub Jelinek * reg-stack.c (stack_result): Unconditionally use diff --git a/gcc/expr.c b/gcc/expr.c index 44900a61346..4dc430e0f80 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -2786,6 +2786,7 @@ emit_move_insn_1 (x, y) /* Don't split destination if it is a stack push. */ int stack = push_operand (x, GET_MODE (x)); +#ifdef PUSH_ROUNDING /* In case we output to the stack, but the size is smaller machine can push exactly, we need to use move instructions. */ if (stack @@ -2829,6 +2830,7 @@ emit_move_insn_1 (x, y) GEN_INT (offset2))), gen_imagpart (submode, y)); } +#endif /* If this is a stack, push the highpart first, so it will be in the argument order.