diff options
Diffstat (limited to 'gcc/sched-ebb.c')
-rw-r--r-- | gcc/sched-ebb.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/sched-ebb.c b/gcc/sched-ebb.c index a9a7cacecd0..d5391d0b5df 100644 --- a/gcc/sched-ebb.c +++ b/gcc/sched-ebb.c @@ -41,6 +41,7 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA #include "params.h" #include "sched-int.h" #include "target.h" +#include "output.h" /* The number of insns to be scheduled in total. */ static int target_n_insns; @@ -551,11 +552,10 @@ schedule_ebb (rtx head, rtx tail) return b; } -/* The one entry point in this file. DUMP_FILE is the dump file for - this pass. */ +/* The one entry point in this file. */ void -schedule_ebbs (FILE *dump_file) +schedule_ebbs (void) { basic_block bb; int probability_cutoff; @@ -571,7 +571,7 @@ schedule_ebbs (FILE *dump_file) if (n_basic_blocks == NUM_FIXED_BLOCKS) return; - sched_init (dump_file); + sched_init (); current_sched_info = &ebb_sched_info; |