Commit 225820ee by Richard Guenther Committed by Richard Biener

re PR rtl-optimization/52803 (ICE: in ira, at ira.c:3616 with…

re PR rtl-optimization/52803 (ICE: in ira, at ira.c:3616 with -fno-move-loop-invariants on almost any code)

2012-04-02  Richard Guenther  <rguenther@suse.de>

	PR middle-end/52803
	* loop-init.c (gate_handle_loop2): Destroy loops here if
	we don't enter RTL loop optimizers.

	* gcc.dg/pr52803.c: New testcase.

From-SVN: r186080
parent cf5ba8a8
2012-04-02 Richard Guenther <rguenther@suse.de>
PR middle-end/52803
* loop-init.c (gate_handle_loop2): Destroy loops here if
we don't enter RTL loop optimizers.
2012-04-02 Uros Bizjak <ubizjak@gmail.com>
Partially revert:
......
......@@ -158,15 +158,24 @@ loop_optimizer_finalize (void)
static bool
gate_handle_loop2 (void)
{
return (optimize > 0
&& (flag_move_loop_invariants
|| flag_unswitch_loops
|| flag_peel_loops
|| flag_unroll_loops
if (optimize > 0
&& (flag_move_loop_invariants
|| flag_unswitch_loops
|| flag_peel_loops
|| flag_unroll_loops
#ifdef HAVE_doloop_end
|| (flag_branch_on_count_reg && HAVE_doloop_end)
|| (flag_branch_on_count_reg && HAVE_doloop_end)
#endif
));
))
return true;
else
{
/* No longer preserve loops, remove them now. */
cfun->curr_properties &= ~PROP_loops;
if (current_loops)
loop_optimizer_finalize ();
return false;
}
}
struct rtl_opt_pass pass_loop2 =
......
2012-04-02 Richard Guenther <rguenther@suse.de>
PR middle-end/52803
* gcc.dg/pr52803.c: New testcase.
2012-04-02 Dodji Seketeli <dodji@redhat.com>
PR c++/40942
......
/* { dg-do compile } */
/* { dg-options "-O -fno-move-loop-invariants" } */
int main () { return 0; }
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