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
This commit is contained in:
Kaz Kojima 2013-08-23 14:31:06 +00:00 committed by Teresa Johnson
parent 0fc80001f0
commit 97aba8e901
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
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>
* pretty-print.h (pp_newline_and_flush): Declare. Remove macro

View File

@ -1650,7 +1650,7 @@ reemit_insn_block_notes (void)
rtx insn, note;
insn = get_insns ();
for (; insn; insn = next_insn (insn))
for (; insn; insn = NEXT_INSN (insn))
{
tree this_block;