diff options
author | Richard Henderson <rth@cygnus.com> | 2000-02-06 05:01:03 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2000-02-06 05:01:03 -0800 |
commit | 69732dcb9c663d68d2a5d433ce76ed8da43e5632 (patch) | |
tree | 14cb8de0063e0e21049d8e2193ad60c82320ff4c /gcc/rtl.h | |
parent | 52a75c3c22a68d2acdbdf6e2e5070b1f424bfc81 (diff) | |
download | gcc-69732dcb9c663d68d2a5d433ce76ed8da43e5632.zip gcc-69732dcb9c663d68d2a5d433ce76ed8da43e5632.tar.gz gcc-69732dcb9c663d68d2a5d433ce76ed8da43e5632.tar.bz2 |
flow.c (flow_delete_insn, [...]): Export.
* flow.c (flow_delete_insn, make_edge, remove_edge): Export.
* basic-block.h: Declare them.
* emit-rtl.h (active_insn_p): New.
(next_active_insn, prev_active_insn): Use it.
* rtl.h: Declare it.
* function.c (emit_return_into_block): New.
(thread_prologue_and_epilogue_insns): Insert return insns instead
of epilogues when possible.
* jump.c (jump_optimize_1): Remove code to insert a return insn
on the fallthru to the exit block.
From-SVN: r31826
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1051,6 +1051,7 @@ extern rtx prev_real_insn PARAMS ((rtx)); extern rtx next_real_insn PARAMS ((rtx)); extern rtx prev_active_insn PARAMS ((rtx)); extern rtx next_active_insn PARAMS ((rtx)); +extern int active_insn_p PARAMS ((rtx)); extern rtx prev_label PARAMS ((rtx)); extern rtx next_label PARAMS ((rtx)); extern rtx next_cc0_user PARAMS ((rtx)); |