Commit 10ef35a9 by James E Wilson Committed by Jim Wilson

loop.c (loop_regs_update): Delete else clause for PATTERN rtx and simplify.

* loop.c (loop_regs_update): Delete else clause for PATTERN rtx and
simplify.

From-SVN: r71160
parent 385bce06
2003-09-06 James E Wilson <wilson@tuliptree.org>
* loop.c (loop_regs_update): Delete else clause for PATTERN rtx and
simplify.
2003-09-07 Kelley Cook <kelleycook@wideopenwest.com> 2003-09-07 Kelley Cook <kelleycook@wideopenwest.com>
* Makefile.in: Define $REMAKE to be $MAKE with LANGUAGES & BOOT_CFLAGS * Makefile.in: Define $REMAKE to be $MAKE with LANGUAGES & BOOT_CFLAGS
......
...@@ -7741,11 +7741,6 @@ loop_regs_update (const struct loop *loop ATTRIBUTE_UNUSED, rtx seq) ...@@ -7741,11 +7741,6 @@ loop_regs_update (const struct loop *loop ATTRIBUTE_UNUSED, rtx seq)
/* Update register info for alias analysis. */ /* Update register info for alias analysis. */
if (seq == NULL_RTX)
return;
if (INSN_P (seq))
{
insn = seq; insn = seq;
while (insn != NULL_RTX) while (insn != NULL_RTX)
{ {
...@@ -7756,10 +7751,6 @@ loop_regs_update (const struct loop *loop ATTRIBUTE_UNUSED, rtx seq) ...@@ -7756,10 +7751,6 @@ loop_regs_update (const struct loop *loop ATTRIBUTE_UNUSED, rtx seq)
insn = NEXT_INSN (insn); insn = NEXT_INSN (insn);
} }
}
else if (GET_CODE (seq) == SET
&& GET_CODE (SET_DEST (seq)) == REG)
record_base_value (REGNO (SET_DEST (seq)), SET_SRC (seq), 0);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment