diff options
author | rakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-03-03 00:04:22 +0000 |
---|---|---|
committer | rakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-03-03 00:04:22 +0000 |
commit | da0f98a7061bbb5ccdbf2f840dd75dea5e78a98d (patch) | |
tree | 0732f0d1ffdc624ba356a07df71af998314be892 /gcc/cfgcleanup.c | |
parent | 77180ce51bd01cd8af93e38e8bc61a63c50de334 (diff) | |
download | gcc-da0f98a7061bbb5ccdbf2f840dd75dea5e78a98d.tar.gz |
* cse.c (rest_of_handle_cse): Do not pass CLEANUP_PRE_LOOP to cfg
cleanup.
* gcse.c (rest_of_handle_gcse): Ditto.
* except.c (gate_handle_eh): Ditto.
* cfgcleanup.c (rest_of_handle_jump2): Ditto.
* basic-block.h (CLEANUP_PRE_LOOP): Remove.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@111653 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgcleanup.c')
-rw-r--r-- | gcc/cfgcleanup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfgcleanup.c b/gcc/cfgcleanup.c index 2dd4ff2bbcf..cd9d708961d 100644 --- a/gcc/cfgcleanup.c +++ b/gcc/cfgcleanup.c @@ -2309,7 +2309,7 @@ rest_of_handle_jump2 (void) reg_scan (get_insns (), max_reg_num ()); if (dump_file) dump_flow_info (dump_file, dump_flags); - cleanup_cfg ((optimize ? CLEANUP_EXPENSIVE : 0) | CLEANUP_PRE_LOOP + cleanup_cfg ((optimize ? CLEANUP_EXPENSIVE : 0) | (flag_thread_jumps ? CLEANUP_THREADING : 0)); create_loop_notes (); @@ -2317,7 +2317,7 @@ rest_of_handle_jump2 (void) purge_line_number_notes (); if (optimize) - cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP); + cleanup_cfg (CLEANUP_EXPENSIVE); /* Jump optimization, and the removal of NULL pointer checks, may have reduced the number of instructions substantially. CSE, and |