diff options
Diffstat (limited to 'gcc/cfgrtl.c')
-rw-r--r-- | gcc/cfgrtl.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c index c82e480ee30..85738a43f36 100644 --- a/gcc/cfgrtl.c +++ b/gcc/cfgrtl.c @@ -479,8 +479,8 @@ const pass_data pass_data_free_cfg = class pass_free_cfg : public rtl_opt_pass { public: - pass_free_cfg(gcc::context *ctxt) - : rtl_opt_pass(pass_data_free_cfg, ctxt) + pass_free_cfg (gcc::context *ctxt) + : rtl_opt_pass (pass_data_free_cfg, ctxt) {} /* opt_pass methods: */ @@ -1441,7 +1441,7 @@ void emit_barrier_after_bb (basic_block bb) { rtx barrier = emit_barrier_after (BB_END (bb)); - gcc_assert (current_ir_type() == IR_RTL_CFGRTL + gcc_assert (current_ir_type () == IR_RTL_CFGRTL || current_ir_type () == IR_RTL_CFGLAYOUT); if (current_ir_type () == IR_RTL_CFGLAYOUT) BB_FOOTER (bb) = unlink_insn_chain (barrier, barrier); @@ -2346,7 +2346,7 @@ verify_hot_cold_block_grouping (void) again (in compgoto). Ensure we don't call this before going back into linearized RTL when any layout fixes would have been committed. */ if (!crtl->bb_reorder_complete - || current_ir_type() != IR_RTL_CFGRTL) + || current_ir_type () != IR_RTL_CFGRTL) return err; FOR_EACH_BB (bb) @@ -3484,8 +3484,8 @@ const pass_data pass_data_into_cfg_layout_mode = class pass_into_cfg_layout_mode : public rtl_opt_pass { public: - pass_into_cfg_layout_mode(gcc::context *ctxt) - : rtl_opt_pass(pass_data_into_cfg_layout_mode, ctxt) + pass_into_cfg_layout_mode (gcc::context *ctxt) + : rtl_opt_pass (pass_data_into_cfg_layout_mode, ctxt) {} /* opt_pass methods: */ @@ -3521,8 +3521,8 @@ const pass_data pass_data_outof_cfg_layout_mode = class pass_outof_cfg_layout_mode : public rtl_opt_pass { public: - pass_outof_cfg_layout_mode(gcc::context *ctxt) - : rtl_opt_pass(pass_data_outof_cfg_layout_mode, ctxt) + pass_outof_cfg_layout_mode (gcc::context *ctxt) + : rtl_opt_pass (pass_data_outof_cfg_layout_mode, ctxt) {} /* opt_pass methods: */ @@ -4887,7 +4887,7 @@ rtl_lv_add_condition_to_bb (basic_block first_head , end_sequence (); /* Add the new cond , in the new head. */ - emit_insn_after(seq, BB_END(cond_bb)); + emit_insn_after (seq, BB_END (cond_bb)); } |