Commit 24db014b by Jeff Law Committed by Jeff Law

* tree-ssa-threadedge.c (cond_arg_set_in_bb): Use last stmt.

From-SVN: r192852
parent 9eaff653
2012-10-26 Jeff Law <law@redhat.com>
* tree-ssa-threadedge.c (cond_arg_set_in_bb): Use last stmt.
2012-10-26 Gunther Nikl <gnikl@users.sourceforge.net> 2012-10-26 Gunther Nikl <gnikl@users.sourceforge.net>
* common/config/m68k/m68k-common.c (m68k_handle_option): Set * common/config/m68k/m68k-common.c (m68k_handle_option): Set
...@@ -584,7 +584,7 @@ cond_arg_set_in_bb (edge e, basic_block bb) ...@@ -584,7 +584,7 @@ cond_arg_set_in_bb (edge e, basic_block bb)
{ {
ssa_op_iter iter; ssa_op_iter iter;
use_operand_p use_p; use_operand_p use_p;
gimple last = gsi_stmt (gsi_last_bb (e->dest)); gimple last = last_stmt (e->dest);
/* E->dest does not have to end with a control transferring /* E->dest does not have to end with a control transferring
instruction. This can occurr when we try to extend a jump instruction. This can occurr when we try to extend a jump
......
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