Commit 8ce9fd5d by Andreas Schwab

revert: cfgrtl.c (rtl_verify_flow_info_1): Don't apply BLOCK_FOR_INSN on a BARRIER insn.

Revert:
2008-12-12  Andreas Schwab  <schwab@suse.de>
* cfgrtl.c (rtl_verify_flow_info_1): Don't apply BLOCK_FOR_INSN on
a BARRIER insn.

From-SVN: r142721
parent 04f182b1
2008-12-12 Andreas Schwab <schwab@suse.de>
Revert:
2008-12-12 Andreas Schwab <schwab@suse.de>
* cfgrtl.c (rtl_verify_flow_info_1): Don't apply BLOCK_FOR_INSN on
a BARRIER insn.
2008-12-12 Zdenek Dvorak <ook@ucw.cz> 2008-12-12 Zdenek Dvorak <ook@ucw.cz>
PR tree-optimization/32044 PR tree-optimization/32044
...@@ -1731,8 +1731,7 @@ rtl_verify_flow_info_1 (void) ...@@ -1731,8 +1731,7 @@ rtl_verify_flow_info_1 (void)
} }
FOR_BB_INSNS (bb, insn) FOR_BB_INSNS (bb, insn)
if (!BARRIER_P (insn) if (BLOCK_FOR_INSN (insn) != bb)
&& BLOCK_FOR_INSN (insn) != bb)
{ {
error ("insn %d basic block pointer is %d, should be %d", error ("insn %d basic block pointer is %d, should be %d",
INSN_UID (insn), INSN_UID (insn),
......
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