From e9c0bd54ae88e23cb896678df3d0cf6efc079f3d Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Wed, 14 Mar 2001 14:21:55 -0800 Subject: [PATCH] * expr.c (emit_move_insn_1): Fix else if around #endif. From-SVN: r40476 --- gcc/ChangeLog | 4 ++++ gcc/expr.c | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0f3b969b045..e2878ac6bcd 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-03-14 Richard Henderson + + * expr.c (emit_move_insn_1): Fix else if around #endif. + Wed Mar 14 22:39:12 CET 2001 Jan Hubicka Vojtech Pavlik 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. */ -- 2.30.2