diff options
author | Roger Sayle <roger@eyesopen.com> | 2002-06-10 22:26:45 +0000 |
---|---|---|
committer | Roger Sayle <sayle@gcc.gnu.org> | 2002-06-10 22:26:45 +0000 |
commit | 9543a9d2d4a1b40161b14b389c7b4f2c1208ec06 (patch) | |
tree | 19fd4c11fba638fe22361fdec1f57bd3bb491201 /gcc | |
parent | 38e186196316a1ddea765d5a1bff2815999597b8 (diff) | |
download | gcc-9543a9d2d4a1b40161b14b389c7b4f2c1208ec06.zip gcc-9543a9d2d4a1b40161b14b389c7b4f2c1208ec06.tar.gz gcc-9543a9d2d4a1b40161b14b389c7b4f2c1208ec06.tar.bz2 |
toplev.c (rest_of_compilation): Disable early if-conversion pass.
* toplev.c (rest_of_compilation): Disable early if-conversion pass.
* gcse.c (bypass_conditional_jumps): Fix typo in setcc test.
From-SVN: r54475
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/gcse.c | 2 | ||||
-rw-r--r-- | gcc/toplev.c | 6 |
3 files changed, 7 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1bfeb34..5b4b671 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-06-10 Roger Sayle <roger@eyesopen.com> + + * toplev.c (rest_of_compilation): Disable early if-conversion pass. + * gcse.c (bypass_conditional_jumps): Fix typo in setcc test. + 2002-06-10 Hans-Peter Nilsson <hp@bitrange.com> * config/mmix/mmix.h: Improve comments. @@ -4541,7 +4541,7 @@ bypass_conditional_jumps () insn = NEXT_INSN (insn)) if (GET_CODE (insn) == INSN) { - if (!setcc) + if (setcc) break; if (GET_CODE (PATTERN (insn)) != SET) break; diff --git a/gcc/toplev.c b/gcc/toplev.c index 7ac28c0f..47011f4 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -2723,7 +2723,7 @@ rest_of_compilation (decl) timevar_push (TV_JUMP); - if (flag_delete_null_pointer_checks || flag_if_conversion) + if (flag_delete_null_pointer_checks) { open_dump_file (DFI_null, decl); find_basic_blocks (insns, max_reg_num (), rtl_dump_file); @@ -2735,10 +2735,6 @@ rest_of_compilation (decl) if (flag_delete_null_pointer_checks) delete_null_pointer_checks (insns); - timevar_push (TV_IFCVT); - if (flag_if_conversion) - if_convert (0); - timevar_pop (TV_IFCVT); cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP); close_dump_file (DFI_null, print_rtl_with_bb, insns); } |