Commit 9543a9d2 by Roger Sayle Committed by Roger Sayle

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
parent 38e18619
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> 2002-06-10 Hans-Peter Nilsson <hp@bitrange.com>
* config/mmix/mmix.h: Improve comments. * config/mmix/mmix.h: Improve comments.
......
...@@ -4541,7 +4541,7 @@ bypass_conditional_jumps () ...@@ -4541,7 +4541,7 @@ bypass_conditional_jumps ()
insn = NEXT_INSN (insn)) insn = NEXT_INSN (insn))
if (GET_CODE (insn) == INSN) if (GET_CODE (insn) == INSN)
{ {
if (!setcc) if (setcc)
break; break;
if (GET_CODE (PATTERN (insn)) != SET) if (GET_CODE (PATTERN (insn)) != SET)
break; break;
......
...@@ -2723,7 +2723,7 @@ rest_of_compilation (decl) ...@@ -2723,7 +2723,7 @@ rest_of_compilation (decl)
timevar_push (TV_JUMP); 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); open_dump_file (DFI_null, decl);
find_basic_blocks (insns, max_reg_num (), rtl_dump_file); find_basic_blocks (insns, max_reg_num (), rtl_dump_file);
...@@ -2735,10 +2735,6 @@ rest_of_compilation (decl) ...@@ -2735,10 +2735,6 @@ rest_of_compilation (decl)
if (flag_delete_null_pointer_checks) if (flag_delete_null_pointer_checks)
delete_null_pointer_checks (insns); 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); cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_PRE_LOOP);
close_dump_file (DFI_null, print_rtl_with_bb, insns); close_dump_file (DFI_null, print_rtl_with_bb, insns);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment