diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2011-03-26 13:03:46 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2011-03-26 13:03:46 +0000 |
commit | ba5e9aca8690bcb5ff4e353dc2738050ab3d9fd0 (patch) | |
tree | d62fdb4e2bf55596cf3feea95658385026ca7c2f /gcc/basic-block.h | |
parent | 5d369d583699112c7339f1f5555bd592f6fed70c (diff) | |
download | gcc-ba5e9aca8690bcb5ff4e353dc2738050ab3d9fd0.zip gcc-ba5e9aca8690bcb5ff4e353dc2738050ab3d9fd0.tar.gz gcc-ba5e9aca8690bcb5ff4e353dc2738050ab3d9fd0.tar.bz2 |
basic-block.h (fixup_abnormal_edges): Adjust prototype.
* basic-block.h (fixup_abnormal_edges): Adjust prototype.
* reload1.c (reload): Adjust call to fixup_abnormal_edges. Rediscover
basic blocks and call commit_edge_insertions directly.
(fixup_abnormal_edges): Move from here to...
* cfgrtl.c (fixup_abnormal_edges): ...here. Only insert instructions
on the edges and return whether some have actually been inserted.
* reg-stack.c (convert_regs): Fix up abnormal edges before inserting
compensation code.
From-SVN: r171556
Diffstat (limited to 'gcc/basic-block.h')
-rw-r--r-- | gcc/basic-block.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/basic-block.h b/gcc/basic-block.h index 3594eea..239c925 100644 --- a/gcc/basic-block.h +++ b/gcc/basic-block.h @@ -798,6 +798,7 @@ extern basic_block force_nonfallthru (edge); extern rtx block_label (basic_block); extern bool purge_all_dead_edges (void); extern bool purge_dead_edges (basic_block); +extern bool fixup_abnormal_edges (void); /* In cfgbuild.c. */ extern void find_many_sub_basic_blocks (sbitmap); @@ -814,7 +815,6 @@ extern bool delete_unreachable_blocks (void); extern bool mark_dfs_back_edges (void); extern void set_edge_can_fallthru_flag (void); extern void update_br_prob_note (basic_block); -extern void fixup_abnormal_edges (void); extern bool inside_basic_block_p (const_rtx); extern bool control_flow_insn_p (const_rtx); extern rtx get_last_bb_insn (basic_block); |