Commit b8153009 by Andreas Schwab Committed by Andreas Schwab

(rtl_verify_flow_info_1): Don't apply BLOCK_FOR_INSN on

a BARRIER insn.

From-SVN: r142708
parent 2d07fd8a
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 Uros Bizjak <ubizjak@gmail.com>
* config/alpha/sync.md (memory_barrier): Remove mem:BLK from operands.
......@@ -1731,7 +1731,8 @@ rtl_verify_flow_info_1 (void)
}
FOR_BB_INSNS (bb, insn)
if (BLOCK_FOR_INSN (insn) != bb)
if (!BARRIER_P (insn)
&& BLOCK_FOR_INSN (insn) != bb)
{
error ("insn %d basic block pointer is %d, should be %d",
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