Commit cb864fbc by Jeff Law Committed by Jeff Law

re PR tree-optimization/65658 (Jump threading too pessimistic when optimizing for size)

       PR tree-optimization/65658
        * tree-ssa-threadupdate.c (redirection_block_p): Remove
        redundant test for GIMPLE_ASSIGN in last change.

From-SVN: r222247
parent 1e7e62b1
2015-04-20 Jeff Law <law@redhat.com>
PR tree-optimization/65658
* tree-ssa-threadupdate.c (redirection_block_p): Remove
redundant test for GIMPLE_ASSIGN in last change.
2015-04-19 Uros Bizjak <ubizjak@gmail.com> 2015-04-19 Uros Bizjak <ubizjak@gmail.com>
* config/i386/i386.c (set_pic_reg_ever_live): Remove. * config/i386/i386.c (set_pic_reg_ever_live): Remove.
......
...@@ -1450,8 +1450,7 @@ redirection_block_p (basic_block bb) ...@@ -1450,8 +1450,7 @@ redirection_block_p (basic_block bb)
&& (gimple_code (gsi_stmt (gsi)) == GIMPLE_LABEL && (gimple_code (gsi_stmt (gsi)) == GIMPLE_LABEL
|| is_gimple_debug (gsi_stmt (gsi)) || is_gimple_debug (gsi_stmt (gsi))
|| gimple_nop_p (gsi_stmt (gsi)) || gimple_nop_p (gsi_stmt (gsi))
|| (gimple_code (gsi_stmt (gsi)) == GIMPLE_ASSIGN || gimple_clobber_p (gsi_stmt (gsi))))
&& gimple_clobber_p (gsi_stmt (gsi)))))
gsi_next (&gsi); gsi_next (&gsi);
/* Check if this is an empty block. */ /* Check if this is an empty block. */
......
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