aboutsummaryrefslogtreecommitdiff
path: root/gcc/expr.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2001-03-14 14:21:55 -0800
committerRichard Henderson <rth@gcc.gnu.org>2001-03-14 14:21:55 -0800
commite9c0bd54ae88e23cb896678df3d0cf6efc079f3d (patch)
tree3c6aac80d3c0c45ae4a8ccae9237626ad2b5a723 /gcc/expr.c
parent0c56474ec65531277740452b869bd643ad6424f5 (diff)
downloadgcc-e9c0bd54ae88e23cb896678df3d0cf6efc079f3d.zip
gcc-e9c0bd54ae88e23cb896678df3d0cf6efc079f3d.tar.gz
gcc-e9c0bd54ae88e23cb896678df3d0cf6efc079f3d.tar.bz2
* expr.c (emit_move_insn_1): Fix else if around #endif.
From-SVN: r40476
Diffstat (limited to 'gcc/expr.c')
-rw-r--r--gcc/expr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/expr.c b/gcc/expr.c
index df1a0cf..e7356ec 100644
--- a/gcc/expr.c
+++ b/gcc/expr.c
@@ -2830,13 +2830,14 @@ emit_move_insn_1 (x, y)
GEN_INT (offset2))),
gen_imagpart (submode, y));
}
+ else
#endif
/* If this is a stack, push the highpart first, so it
will be in the argument order.
In that case, change_address is used only to convert
the mode, not to change the address. */
- else if (stack)
+ if (stack)
{
/* Note that the real part always precedes the imag part in memory
regardless of machine's endianness. */