summaryrefslogtreecommitdiff
path: root/gcc/expr.c
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2001-03-14 22:21:55 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2001-03-14 22:21:55 +0000
commite3fe8c3bcb6ea95f8d5db4dfe124da9482f060d8 (patch)
tree3c6aac80d3c0c45ae4a8ccae9237626ad2b5a723 /gcc/expr.c
parent65e519a4c1d0f5a7965f49efa7f7239646a550c9 (diff)
downloadgcc-e3fe8c3bcb6ea95f8d5db4dfe124da9482f060d8.tar.gz
* expr.c (emit_move_insn_1): Fix else if around #endif.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40476 138bc75d-0d04-0410-961f-82ee72b054a4
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 df1a0cf64ff..e7356ec2f20 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. */