diff options
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 40 |
1 files changed, 21 insertions, 19 deletions
diff --git a/gcc/final.c b/gcc/final.c index 5c8767328b3..8a9b48f631b 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -705,7 +705,7 @@ compute_alignments (void) freq_threshold = freq_max / PARAM_VALUE (PARAM_ALIGN_THRESHOLD); if (dump_file) - fprintf(dump_file, "freq_max: %i\n",freq_max); + fprintf (dump_file, "freq_max: %i\n",freq_max); FOR_EACH_BB (bb) { rtx label = BB_HEAD (bb); @@ -717,9 +717,10 @@ compute_alignments (void) || optimize_bb_for_size_p (bb)) { if (dump_file) - fprintf(dump_file, "BB %4i freq %4i loop %2i loop_depth %2i skipped.\n", - bb->index, bb->frequency, bb->loop_father->num, - bb_loop_depth (bb)); + fprintf (dump_file, + "BB %4i freq %4i loop %2i loop_depth %2i skipped.\n", + bb->index, bb->frequency, bb->loop_father->num, + bb_loop_depth (bb)); continue; } max_log = LABEL_ALIGN (label); @@ -734,10 +735,11 @@ compute_alignments (void) } if (dump_file) { - fprintf(dump_file, "BB %4i freq %4i loop %2i loop_depth %2i fall %4i branch %4i", - bb->index, bb->frequency, bb->loop_father->num, - bb_loop_depth (bb), - fallthru_frequency, branch_frequency); + fprintf (dump_file, "BB %4i freq %4i loop %2i loop_depth" + " %2i fall %4i branch %4i", + bb->index, bb->frequency, bb->loop_father->num, + bb_loop_depth (bb), + fallthru_frequency, branch_frequency); if (!bb->loop_father->inner && bb->loop_father->num) fprintf (dump_file, " inner_loop"); if (bb->loop_father->header == bb) @@ -763,7 +765,7 @@ compute_alignments (void) { log = JUMP_ALIGN (label); if (dump_file) - fprintf(dump_file, " jump alignment added.\n"); + fprintf (dump_file, " jump alignment added.\n"); if (max_log < log) { max_log = log; @@ -780,7 +782,7 @@ compute_alignments (void) { log = LOOP_ALIGN (label); if (dump_file) - fprintf(dump_file, " internal loop alignment added.\n"); + fprintf (dump_file, " internal loop alignment added.\n"); if (max_log < log) { max_log = log; @@ -863,8 +865,8 @@ const pass_data pass_data_compute_alignments = class pass_compute_alignments : public rtl_opt_pass { public: - pass_compute_alignments(gcc::context *ctxt) - : rtl_opt_pass(pass_data_compute_alignments, ctxt) + pass_compute_alignments (gcc::context *ctxt) + : rtl_opt_pass (pass_data_compute_alignments, ctxt) {} /* opt_pass methods: */ @@ -1124,7 +1126,7 @@ shorten_branches (rtx first) INSN_ADDRESSES (uid) = insn_current_address + insn_lengths[uid]; if (NOTE_P (insn) || BARRIER_P (insn) - || LABEL_P (insn) || DEBUG_INSN_P(insn)) + || LABEL_P (insn) || DEBUG_INSN_P (insn)) continue; if (INSN_DELETED_P (insn)) continue; @@ -4503,8 +4505,8 @@ const pass_data pass_data_final = class pass_final : public rtl_opt_pass { public: - pass_final(gcc::context *ctxt) - : rtl_opt_pass(pass_data_final, ctxt) + pass_final (gcc::context *ctxt) + : rtl_opt_pass (pass_data_final, ctxt) {} /* opt_pass methods: */ @@ -4549,8 +4551,8 @@ const pass_data pass_data_shorten_branches = class pass_shorten_branches : public rtl_opt_pass { public: - pass_shorten_branches(gcc::context *ctxt) - : rtl_opt_pass(pass_data_shorten_branches, ctxt) + pass_shorten_branches (gcc::context *ctxt) + : rtl_opt_pass (pass_data_shorten_branches, ctxt) {} /* opt_pass methods: */ @@ -4713,8 +4715,8 @@ const pass_data pass_data_clean_state = class pass_clean_state : public rtl_opt_pass { public: - pass_clean_state(gcc::context *ctxt) - : rtl_opt_pass(pass_data_clean_state, ctxt) + pass_clean_state (gcc::context *ctxt) + : rtl_opt_pass (pass_data_clean_state, ctxt) {} /* opt_pass methods: */ |