From 9543a9d2d4a1b40161b14b389c7b4f2c1208ec06 Mon Sep 17 00:00:00 2001 From: Roger Sayle Date: Mon, 10 Jun 2002 22:26:45 +0000 Subject: 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 --- gcc/toplev.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'gcc/toplev.c') 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); } -- cgit v1.1