aboutsummaryrefslogtreecommitdiff
path: root/gcc/except.c
diff options
context:
space:
mode:
authorJan Hubicka <hubicka@gcc.gnu.org>2001-07-29 17:01:53 +0000
committerJan Hubicka <hubicka@gcc.gnu.org>2001-07-29 17:01:53 +0000
commit0068fd9637aa304ba7b27d720719bd589a7755ce (patch)
treeea95e3e09027651222c04624fd31922365dd2cc8 /gcc/except.c
parentdf07e07d1a0f83cc18efc5f901dfd4fb262d538a (diff)
downloadgcc-0068fd9637aa304ba7b27d720719bd589a7755ce.zip
gcc-0068fd9637aa304ba7b27d720719bd589a7755ce.tar.gz
gcc-0068fd9637aa304ba7b27d720719bd589a7755ce.tar.bz2
basic-block.h (CLEANUP_PRE_LOOP): New.
* basic-block.h (CLEANUP_PRE_LOOP): New. * except.c (finish_eh_generation): Update call of cleanup_cfg. * sibcall.c (optimize_sibling_calls): Likewise. * toplev.c (rest_of_compilation): Likewise. * flow.c (try_forward_edges): Take argument MODE; do not forward over loop pre-headers if CLEANUP_PRE_LOOP. (try_optimize_cfg): Update call of try_forward_edges. * (validate_replace_rtx_1): Fix simplification of MINUS. From-SVN: r44458
Diffstat (limited to 'gcc/except.c')
-rw-r--r--gcc/except.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/except.c b/gcc/except.c
index b45237c..49df0df 100644
--- a/gcc/except.c
+++ b/gcc/except.c
@@ -2348,7 +2348,7 @@ finish_eh_generation ()
rebuild_jump_labels (get_insns ());
find_basic_blocks (get_insns (), max_reg_num (), 0);
- cleanup_cfg (0);
+ cleanup_cfg (CLEANUP_PRE_LOOP);
/* These registers are used by the landing pads. Make sure they
have been generated. */
@@ -2371,7 +2371,7 @@ finish_eh_generation ()
find_exception_handler_labels ();
rebuild_jump_labels (get_insns ());
find_basic_blocks (get_insns (), max_reg_num (), 0);
- cleanup_cfg (0);
+ cleanup_cfg (CLEANUP_PRE_LOOP);
}
/* This section handles removing dead code for flow. */