diff options
Diffstat (limited to 'gcc/config/mips/mips.c')
-rw-r--r-- | gcc/config/mips/mips.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index fe3e66d..ba78b52 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -4434,7 +4434,7 @@ mips_get_unaligned_mem (rtx *op, unsigned int width, int bitpos, bool mips_expand_unaligned_load (rtx dest, rtx src, unsigned int width, int bitpos) { - rtx left, right; + rtx left, right, temp; /* If TARGET_64BIT, the destination of a 32-bit load will be a paradoxical word_mode subreg. This is the only case in which @@ -4453,17 +4453,16 @@ mips_expand_unaligned_load (rtx dest, rtx src, unsigned int width, int bitpos) if (!mips_get_unaligned_mem (&src, width, bitpos, &left, &right)) return false; + temp = gen_reg_rtx (GET_MODE (dest)); if (GET_MODE (dest) == DImode) { - emit_insn (gen_mov_ldl (dest, src, left)); - emit_insn (gen_mov_ldr (copy_rtx (dest), copy_rtx (src), - right, copy_rtx (dest))); + emit_insn (gen_mov_ldl (temp, src, left)); + emit_insn (gen_mov_ldr (dest, copy_rtx (src), right, temp)); } else { - emit_insn (gen_mov_lwl (dest, src, left)); - emit_insn (gen_mov_lwr (copy_rtx (dest), copy_rtx (src), - right, copy_rtx (dest))); + emit_insn (gen_mov_lwl (temp, src, left)); + emit_insn (gen_mov_lwr (dest, copy_rtx (src), right, temp)); } return true; } |