diff options
author | Jan Hubicka <jh@suse.cz> | 2001-03-14 19:31:48 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2001-03-14 18:31:48 +0000 |
commit | 79ce92d772910be427730939d4691403245a4440 (patch) | |
tree | 2da01d0c0ee8b2c9a0b414adbe18bd514b2b5851 /gcc/expr.c | |
parent | 9cf218a30f2076faeeb43df2f3b422fc65f59c0e (diff) | |
download | gcc-79ce92d772910be427730939d4691403245a4440.zip gcc-79ce92d772910be427730939d4691403245a4440.tar.gz gcc-79ce92d772910be427730939d4691403245a4440.tar.bz2 |
* expr.c (emit_move_insn_1): Guard PUSH_ROUNDING use by ifdef.
From-SVN: r40462
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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. |