Commit 7861732f by Bernd Schmidt Committed by Bernd Schmidt

sel-sched.c (sel_global_init): Swap order of sched_rgn_init and sched_init calls.

	* sel-sched.c (sel_global_init): Swap order of sched_rgn_init and
	sched_init calls.

From-SVN: r186324
parent 754870ed
2012-04-11 Bernd Schmidt <bernds@codesourcery.com>
* sel-sched.c (sel_global_init): Swap order of sched_rgn_init and
sched_init calls.
2012-04-11 Richard Guenther <rguenther@suse.de> 2012-04-11 Richard Guenther <rguenther@suse.de>
PR middle-end/52621 PR middle-end/52621
......
/* Instruction scheduling pass. Selective scheduler and pipeliner. /* Instruction scheduling pass. Selective scheduler and pipeliner.
Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012
Free Software Foundation, Inc. Free Software Foundation, Inc.
This file is part of GCC. This file is part of GCC.
...@@ -7637,8 +7637,8 @@ sel_global_init (void) ...@@ -7637,8 +7637,8 @@ sel_global_init (void)
sel_setup_sched_infos (); sel_setup_sched_infos ();
setup_sched_dump (); setup_sched_dump ();
sched_rgn_init (false);
sched_init (); sched_init ();
sched_rgn_init (false);
sched_init_bbs (); sched_init_bbs ();
/* Reset AFTER_RECOVERY if it has been set by the 1st scheduler pass. */ /* Reset AFTER_RECOVERY if it has been set by the 1st scheduler pass. */
......
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