diff options
author | Roger Sayle <roger@eyesopen.com> | 2007-02-01 20:32:20 +0000 |
---|---|---|
committer | Roger Sayle <sayle@gcc.gnu.org> | 2007-02-01 20:32:20 +0000 |
commit | 62e5bf5d4203458b41813a79213b3f513a4ca98c (patch) | |
tree | 4f883cdf40bcff1810e7d9c293a34dbdf22ce4e4 /gcc/modulo-sched.c | |
parent | 0f160ccf2876be5265381dc04a87e71e2dc5f0b6 (diff) | |
download | gcc-62e5bf5d4203458b41813a79213b3f513a4ca98c.tar.gz |
alias.c (init_alias_analysis): Correct whitespace.
* alias.c (init_alias_analysis): Correct whitespace.
* bb-reorder.c (fix_edges_for_rarely_executed_code,
partition_hot_cold_basic_blocks): Likewise.
* builtins.c (expand_builtin_printf, expand_builtin_fprintf,
expand_builtin_sprintf, fold_builtin_carg, fold_builtin_sprintf,
maybe_emit_sprintf_chk_warning, fold_builtin_sprintf_chk,
fold_builtin_snprintf_chk, fold_builtin_printf,
fold_builtin_fprintf, do_mpfr_ckconv, do_mpfr_arg1, do_mpfr_arg2,
do_mpfr_arg3, do_mpfr_sincos): Likewise.
* cfgcleanup.c (cleanup_cfg): Likewise.
* cfgexpand.c (tree_expand_cfg): Likewise.
* fold-const.c (fold_binary) <RDIV_EXPR>: Likewise.
* function.c (get_next_funcdef_no): Likewise.
* gengtype.c (main): Likewise.
* genmodes.c (main): Likewise.
* gcse.c (bypass_conditional_jumps, print_ldst_list): Likewise.
* haifa-sched.c (schedule_block, extend_h_i_d): Likewise.
* ifcvt.c (noce_emit_move_insn): Likewise.
* modulo-sched.c (generate_prolog_epilog, sms_schedule_by_order):
Likewise.
* stor-layout.c (get_best_mode): Likewise.
* tree-ssa-loop-niter.c (get_val_for): Likewise.
* tree-ssa-structalias.c (get_varinfo, get_varinfo_fc,
scc_visit, do_ds_constraint, do_complex_constraint, label_visit,
perform_var_substitution, solve_graph): Likewise.
* tree-vrp.c (vrp_finalize): Likewise.
From-SVN: r121470
Diffstat (limited to 'gcc/modulo-sched.c')
-rw-r--r-- | gcc/modulo-sched.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/gcc/modulo-sched.c b/gcc/modulo-sched.c index 228c3f985cc..7da7ed869e0 100644 --- a/gcc/modulo-sched.c +++ b/gcc/modulo-sched.c @@ -1,5 +1,5 @@ /* Swing Modulo Scheduling implementation. - Copyright (C) 2004, 2005, 2006 + Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation, Inc. Contributed by Ayal Zaks and Mustafa Hagog <zaks,mustafa@il.ibm.com> @@ -744,7 +744,7 @@ generate_prolog_epilog (partial_schedule_ptr ps, struct loop * loop, rtx count_r /* Put the prolog on the entry edge. */ e = loop_preheader_edge (loop); - split_edge_and_insert (e, get_insns()); + split_edge_and_insert (e, get_insns ()); end_sequence (); @@ -757,7 +757,7 @@ generate_prolog_epilog (partial_schedule_ptr ps, struct loop * loop, rtx count_r /* Put the epilogue on the exit edge. */ gcc_assert (single_exit (loop)); e = single_exit (loop); - split_edge_and_insert (e, get_insns()); + split_edge_and_insert (e, get_insns ()); end_sequence (); } @@ -1469,7 +1469,7 @@ sms_schedule_by_order (ddg_ptr g, int mii, int maxii, int *nodes_order) bool unscheduled_nodes = false; if (dump_file) - fprintf(dump_file, "Starting with ii=%d\n", ii); + fprintf (dump_file, "Starting with ii=%d\n", ii); if (try_again_with_larger_ii) { try_again_with_larger_ii = false; @@ -1521,8 +1521,9 @@ sms_schedule_by_order (ddg_ptr g, int mii, int maxii, int *nodes_order) } /* 2. Try scheduling u in window. */ if (dump_file) - fprintf(dump_file, "Trying to schedule node %d in (%d .. %d) step %d\n", - u, start, end, step); + fprintf (dump_file, + "Trying to schedule node %d in (%d .. %d) step %d\n", + u, start, end, step); /* use must_follow & must_precede bitmaps to determine order of nodes within the cycle. */ @@ -1556,7 +1557,7 @@ sms_schedule_by_order (ddg_ptr g, int mii, int maxii, int *nodes_order) SET_BIT (sched_nodes, u); success = 1; if (dump_file) - fprintf(dump_file, "Schedule in %d\n", c); + fprintf (dump_file, "Schedule in %d\n", c); break; } } |