Commit 5582cb29 by Hariharan Sandanagobalane Committed by Hariharan Sandanagobalane

picochip.c (picochip_reorg): Check for note_p for epilogue instruction move.

        * config/picochip/picochip.c (picochip_reorg): Check for note_p for
          epilogue instruction move.

From-SVN: r164108
parent ed2222c8
2010-09-09 Hariharan Sandanagobalane <hariharan@picochip.com>
* config/picochip/picochip.c (picochip_reorg): Check for note_p for
epilogue instruction move.
2010-09-09 Jan Hubicka <jh@suse.cz>
* collect2.c (maybe_run_lto_and_relink): Rewrite code producing ld
......
......@@ -3290,7 +3290,7 @@ picochip_reorg (void)
for (insn = get_insns (); insn; insn = next_insn (insn))
{
/* The prologue end must be moved to the end of the VLIW packet. */
if (NOTE_KIND (insn) == NOTE_INSN_PROLOGUE_END)
if (NOTE_P (insn) && NOTE_KIND (insn) == NOTE_INSN_PROLOGUE_END)
{
prologue_end_note = insn;
break;
......
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