Commit aeb55665 by Richard Henderson Committed by Richard Henderson

modulo-sched.c (doloop_register_get): Protect against doloop_end not defined.

        * modulo-sched.c (doloop_register_get): Protect against
        doloop_end not defined.

From-SVN: r100528
parent ba4853f8
2005-06-02 Richard Henderson <rth@redhat.com>
* modulo-sched.c (doloop_register_get): Protect against
doloop_end not defined.
2005-06-02 Kazu Hirata <kazu@codesourcery.com>
* config/sh/sh.c (general_movsrc_operand,
......
......@@ -273,8 +273,9 @@ static struct sched_info sms_sched_info =
or zero if it is not a decrement-and-branch insn. */
static rtx
doloop_register_get (rtx insn)
doloop_register_get (rtx insn ATTRIBUTE_UNUSED)
{
#ifdef HAVE_doloop_end
rtx pattern, reg, condition;
if (! JUMP_P (insn))
......@@ -294,6 +295,9 @@ doloop_register_get (rtx insn)
gcc_unreachable ();
return reg;
#else
return NULL_RTX;
#endif
}
/* Check if COUNT_REG is set to a constant in the PRE_HEADER block, so
......
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