Commit 74a28b08 by Paolo Bonzini Committed by Paolo Bonzini

recog.c (split_all_insns): Remove dead code.

2010-10-28  Paolo Bonzini  <bonzini@gnu.org>

	* recog.c (split_all_insns): Remove dead code.

From-SVN: r166048
parent 2fe4dc01
2010-10-28 Paolo Bonzini <bonzini@gnu.org>
* recog.c (split_all_insns): Remove dead code.
2010-10-28 Nathan Froyd <froydnj@codesourcery.com> 2010-10-28 Nathan Froyd <froydnj@codesourcery.com>
* score.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete. * score.h (FUNCTION_ARG, FUNCTION_ARG_ADVANCE): Delete.
...@@ -2868,15 +2868,8 @@ split_all_insns (void) ...@@ -2868,15 +2868,8 @@ split_all_insns (void)
} }
else else
{ {
rtx last = split_insn (insn); if (split_insn (insn))
if (last)
{ {
/* The split sequence may include barrier, but the
BB boundary we are interested in will be set to
previous one. */
while (BARRIER_P (last))
last = PREV_INSN (last);
SET_BIT (blocks, bb->index); SET_BIT (blocks, bb->index);
changed = true; changed = true;
} }
......
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