diff options
author | Zdenek Dvorak <dvorakz@suse.cz> | 2006-03-03 01:04:22 +0100 |
---|---|---|
committer | Zdenek Dvorak <rakdver@gcc.gnu.org> | 2006-03-03 00:04:22 +0000 |
commit | 599941607016f0574a55d77ba0cab0415fffdde6 (patch) | |
tree | 0732f0d1ffdc624ba356a07df71af998314be892 /gcc/cfgcleanup.c | |
parent | 5143b5fcfec76fb0529eb9c591f930df810eeb58 (diff) | |
download | gcc-599941607016f0574a55d77ba0cab0415fffdde6.tar.gz |
cse.c (rest_of_handle_cse): Do not pass CLEANUP_PRE_LOOP to cfg cleanup.
* 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.
From-SVN: r111653
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 |