diff options
author | Richard Sandiford <rsandifo@redhat.com> | 2004-07-05 06:37:10 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2004-07-05 06:37:10 +0000 |
commit | e0ec4c3b6bd191bc92fdab60bd4636480d68f870 (patch) | |
tree | 487eeb5fb0ac361eb3308ed35c0aa455700de2d8 /gcc/config | |
parent | feb61729c969ac0198f0fdb9027f75d781ccba56 (diff) | |
download | gcc-e0ec4c3b6bd191bc92fdab60bd4636480d68f870.zip gcc-e0ec4c3b6bd191bc92fdab60bd4636480d68f870.tar.gz gcc-e0ec4c3b6bd191bc92fdab60bd4636480d68f870.tar.bz2 |
re PR target/16357 (ICE copying 7 bytes between extern char[]s)
PR target/16357
* config/mips/mips.c (mips_block_move_straight): Pass BLKmode memrefs
to mips_expand_unaligned_load, mips_expand_unaligned_store, and
move_by_pieces.
From-SVN: r84108
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/mips/mips.c | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index c2f7ce9..8382b02 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -3402,33 +3402,33 @@ mips_block_move_straight (rtx dest, rtx src, HOST_WIDE_INT length) the source has enough alignment, otherwise use left/right pairs. */ for (offset = 0, i = 0; offset + delta <= length; offset += delta, i++) { - rtx part; - regs[i] = gen_reg_rtx (mode); - part = adjust_address (src, mode, offset); - if (MEM_ALIGN (part) >= bits) - emit_move_insn (regs[i], part); - else if (!mips_expand_unaligned_load (regs[i], part, bits, 0)) - abort (); + if (MEM_ALIGN (src) >= bits) + emit_move_insn (regs[i], adjust_address (src, mode, offset)); + else + { + rtx part = adjust_address (src, BLKmode, offset); + if (!mips_expand_unaligned_load (regs[i], part, bits, 0)) + abort (); + } } /* Copy the chunks to the destination. */ for (offset = 0, i = 0; offset + delta <= length; offset += delta, i++) - { - rtx part; - - part = adjust_address (dest, mode, offset); - if (MEM_ALIGN (part) >= bits) - emit_move_insn (part, regs[i]); - else if (!mips_expand_unaligned_store (part, regs[i], bits, 0)) - abort (); - } + if (MEM_ALIGN (dest) >= bits) + emit_move_insn (adjust_address (dest, mode, offset), regs[i]); + else + { + rtx part = adjust_address (dest, BLKmode, offset); + if (!mips_expand_unaligned_store (part, regs[i], bits, 0)) + abort (); + } /* Mop up any left-over bytes. */ if (offset < length) { - src = adjust_address (src, mode, offset); - dest = adjust_address (dest, mode, offset); + src = adjust_address (src, BLKmode, offset); + dest = adjust_address (dest, BLKmode, offset); move_by_pieces (dest, src, length - offset, MIN (MEM_ALIGN (src), MEM_ALIGN (dest)), 0); } |