Commit 79ce92d7 by Jan Hubicka Committed by Jan Hubicka

* expr.c (emit_move_insn_1): Guard PUSH_ROUNDING use by ifdef.

From-SVN: r40462
parent 9cf218a3
Wed Mar 14 19:29:50 CET 2001 Jan Hubicka <jh@suse.cz>
* expr.c (emit_move_insn_1): Guard PUSH_ROUNDING use by ifdef.
2001-03-14 Jakub Jelinek <jakub@redhat.com>
* reg-stack.c (stack_result): Unconditionally use
......
......@@ -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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment