diff options
author | Richard Henderson <rth@redhat.com> | 2001-03-14 14:21:55 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-03-14 14:21:55 -0800 |
commit | e9c0bd54ae88e23cb896678df3d0cf6efc079f3d (patch) | |
tree | 3c6aac80d3c0c45ae4a8ccae9237626ad2b5a723 /gcc | |
parent | 0c56474ec65531277740452b869bd643ad6424f5 (diff) | |
download | gcc-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')
-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 0f3b969..e2878ac 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 @@ -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. */ |