Commit 0492158e by Richard Biener Committed by Richard Biener

tree-ssa.c (verify_ssa): If verify_def found an error, ICE.

2014-02-17  Richard Biener  <rguenther@suse.de>

	* tree-ssa.c (verify_ssa): If verify_def found an error, ICE.

From-SVN: r207824
parent ce18e2a6
2014-02-17 Richard Biener <rguenther@suse.de>
* tree-ssa.c (verify_ssa): If verify_def found an error, ICE.
2014-02-17 Kirill Yukhin <kirill.yukhin@intel.com> 2014-02-17 Kirill Yukhin <kirill.yukhin@intel.com>
Ilya Tocar <ilya.tocar@intel.com> Ilya Tocar <ilya.tocar@intel.com>
......
...@@ -988,9 +988,9 @@ verify_ssa (bool check_modified_stmt) ...@@ -988,9 +988,9 @@ verify_ssa (bool check_modified_stmt)
if (!gimple_nop_p (stmt)) if (!gimple_nop_p (stmt))
{ {
basic_block bb = gimple_bb (stmt); basic_block bb = gimple_bb (stmt);
verify_def (bb, definition_block, if (verify_def (bb, definition_block,
name, stmt, virtual_operand_p (name)); name, stmt, virtual_operand_p (name)))
goto err;
} }
} }
} }
......
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