diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-14 22:21:55 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-14 22:21:55 +0000 |
commit | e3fe8c3bcb6ea95f8d5db4dfe124da9482f060d8 (patch) | |
tree | 3c6aac80d3c0c45ae4a8ccae9237626ad2b5a723 /gcc | |
parent | 65e519a4c1d0f5a7965f49efa7f7239646a550c9 (diff) | |
download | gcc-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')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/expr.c | 3 |
2 files changed, 6 insertions, 1 deletions
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 <rth@redhat.com> + + * expr.c (emit_move_insn_1): Fix else if around #endif. + Wed Mar 14 22:39:12 CET 2001 Jan Hubicka <jh@suse.cz> 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. */ |