aboutsummaryrefslogtreecommitdiff
path: root/gcc/emit-rtl.c
diff options
context:
space:
mode:
authorGabor Loki <loki@gcc.gnu.org>2006-01-16 15:56:47 +0000
committerGabor Loki <loki@gcc.gnu.org>2006-01-16 15:56:47 +0000
commit38109dab82b39697d2a062dda597e01446a72c15 (patch)
treeaf252562b35a549f3d69775cbe66df0b0efcfb90 /gcc/emit-rtl.c
parent292f30c5d777603851ec3dd576a7038c8b64c632 (diff)
downloadgcc-38109dab82b39697d2a062dda597e01446a72c15.zip
gcc-38109dab82b39697d2a062dda597e01446a72c15.tar.gz
gcc-38109dab82b39697d2a062dda597e01446a72c15.tar.bz2
rtl-factoring.c: Add sequence abstraction algorithm.
2006-01-16 Gabor Loki <loki@gcc.gnu.org> * rtl-factoring.c : Add sequence abstraction algorithm. * cfgcleanup.c (outgoing_edges_match): Extra checks. (try_crossjump_to_edge): Avoid deleting preserve label when redirecting ABNORMAL edges. (block_has_preserve_label): New function. * common.opt: Register new pass. * Makefile.in: Ditto. * passes.c: Ditto. * timevar.def: Ditto. * tree-pass.h: Ditto. * emit-rtl.c (make_jump_insn_raw): Remove forward decl. * rtl.h (make_jump_insn_raw): Add forward decl. * doc/invoke.texi: Add documentation for -frtl-abstract-sequences. From-SVN: r109750
Diffstat (limited to 'gcc/emit-rtl.c')
-rw-r--r--gcc/emit-rtl.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c
index aaab19e..e1446fc 100644
--- a/gcc/emit-rtl.c
+++ b/gcc/emit-rtl.c
@@ -164,7 +164,6 @@ static GTY ((if_marked ("ggc_marked_p"), param_is (struct rtx_def)))
#define last_location (cfun->emit->x_last_location)
#define first_label_num (cfun->emit->x_first_label_num)
-static rtx make_jump_insn_raw (rtx);
static rtx make_call_insn_raw (rtx);
static rtx find_line_note (rtx);
static rtx change_address_1 (rtx, enum machine_mode, rtx, int);
@@ -3344,7 +3343,7 @@ make_insn_raw (rtx pattern)
/* Like `make_insn_raw' but make a JUMP_INSN instead of an insn. */
-static rtx
+rtx
make_jump_insn_raw (rtx pattern)
{
rtx insn;