diff options
author | Richard Stallman <rms@gnu.org> | 1993-11-03 21:18:49 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-11-03 21:18:49 +0000 |
commit | 2fb8a81d288258e0b5f1c241e9a83b6171defeb2 (patch) | |
tree | 2e9acced95b2035d766d65eb1fb8305f1c64932a | |
parent | 3a58400f8515d6768877c47b7592daa0f0c7cd82 (diff) | |
download | gcc-2fb8a81d288258e0b5f1c241e9a83b6171defeb2.zip gcc-2fb8a81d288258e0b5f1c241e9a83b6171defeb2.tar.gz gcc-2fb8a81d288258e0b5f1c241e9a83b6171defeb2.tar.bz2 |
(output_move_double): More of previous change.
From-SVN: r5988
-rw-r--r-- | gcc/config/m68k/m68k.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/m68k/m68k.c b/gcc/config/m68k/m68k.c index 1e29a6d..b536f6d 100644 --- a/gcc/config/m68k/m68k.c +++ b/gcc/config/m68k/m68k.c @@ -1125,7 +1125,7 @@ compadr: output_asm_insn (singlemove_string (middlehalf), middlehalf); return ""; } - else if (reg_overlap_mentioned_p (operands[0], XEXP (operands[1], 0))) + else if (reg_overlap_mentioned_p (testlow, XEXP (operands[1], 0))) /* If the low half of dest is mentioned in the source memory address, the arrange to emit the move late half first. */ dest_overlapped_low = 1; |