Commit 3b25fbfe by Kaveh R. Ghazi Committed by Kaveh Ghazi

* gcse.c (insert_insn_end_bb): Fix typo in last change.

From-SVN: r50453
parent 189ae0f4
2002-03-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* gcse.c (insert_insn_end_bb): Fix typo in last change.
Fri Mar 8 21:08:52 CET 2002 Jan Hubicka <jh@suse.cz> Fri Mar 8 21:08:52 CET 2002 Jan Hubicka <jh@suse.cz>
* recog.c (peephole2_optimize): Re-distribute EH edges. * recog.c (peephole2_optimize): Re-distribute EH edges.
......
...@@ -4626,7 +4626,7 @@ insert_insn_end_bb (expr, bb, pre) ...@@ -4626,7 +4626,7 @@ insert_insn_end_bb (expr, bb, pre)
/* It should always be the case that we can put these instructions /* It should always be the case that we can put these instructions
anywhere in the basic block with performing PRE optimizations. anywhere in the basic block with performing PRE optimizations.
Check this. */ Check this. */
if (GET_CODE (insn) == insn && pre if (GET_CODE (insn) == INSN && pre
&& !TEST_BIT (antloc[bb->index], expr->bitmap_index) && !TEST_BIT (antloc[bb->index], expr->bitmap_index)
&& !TEST_BIT (transp[bb->index], expr->bitmap_index)) && !TEST_BIT (transp[bb->index], expr->bitmap_index))
abort (); abort ();
......
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