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/toplev.c | |
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/toplev.c')
-rw-r--r-- | gcc/toplev.c | 6 |
1 files changed, 1 insertions, 5 deletions
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); } |