Commit 97aba8e9 by Kaz Kojima Committed by Teresa Johnson

re PR rtl-optimization/58220 (Many new failures for SH after rev. 201833)

2013-08-23  Kaz Kojima  <kkojima@gcc.gnu.org>

        PR rtl-optimization/58220
        PR regression/58221
	* final.c (reemit_insn_block_notes): Use NEXT_INSN to
        handle SEQUENCE insns properly.

From-SVN: r201941
parent 0fc80001
2013-08-23 Kaz Kojima <kkojima@gcc.gnu.org>
PR rtl-optimization/58220
PR regression/58221
* final.c (reemit_insn_block_notes): Use NEXT_INSN to
handle SEQUENCE insns properly.
2013-08-23 Gabriel Dos Reis <gdr@integrable-solutions.net> 2013-08-23 Gabriel Dos Reis <gdr@integrable-solutions.net>
* pretty-print.h (pp_newline_and_flush): Declare. Remove macro * pretty-print.h (pp_newline_and_flush): Declare. Remove macro
......
...@@ -1650,7 +1650,7 @@ reemit_insn_block_notes (void) ...@@ -1650,7 +1650,7 @@ reemit_insn_block_notes (void)
rtx insn, note; rtx insn, note;
insn = get_insns (); insn = get_insns ();
for (; insn; insn = next_insn (insn)) for (; insn; insn = NEXT_INSN (insn))
{ {
tree this_block; tree this_block;
......
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