mirror of git://gcc.gnu.org/git/gcc.git
* loop.c (load_mems): Copy rtx for output mem.
From-SVN: r22357
This commit is contained in:
parent
45197bb1b1
commit
ad20647545
|
|
@ -1,3 +1,7 @@
|
||||||
|
Wed Sep 9 13:14:41 1998 Richard Henderson <rth@cygnus.com>
|
||||||
|
|
||||||
|
* loop.c (load_mems): Copy rtx for output mem.
|
||||||
|
|
||||||
Wed Sep 9 15:16:58 1998 Gavin Romig-Koch <gavin@cygnus.com>
|
Wed Sep 9 15:16:58 1998 Gavin Romig-Koch <gavin@cygnus.com>
|
||||||
|
|
||||||
* mips/abi64.h (LONG_MAX_SPEC): Don't set LONG_MAX for
|
* mips/abi64.h (LONG_MAX_SPEC): Don't set LONG_MAX for
|
||||||
|
|
|
||||||
|
|
@ -8802,7 +8802,7 @@ load_mems (scan_start, end, loop_top, start)
|
||||||
|
|
||||||
/* Store the memory immediately after END, which is
|
/* Store the memory immediately after END, which is
|
||||||
the NOTE_LOOP_END. */
|
the NOTE_LOOP_END. */
|
||||||
set = gen_rtx_SET (GET_MODE (reg), mem, reg);
|
set = gen_rtx_SET (GET_MODE (reg), copy_rtx (mem), reg);
|
||||||
emit_insn_after (set, label);
|
emit_insn_after (set, label);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue