Commit 1d766db0 by Bernd Schmidt Committed by Bernd Schmidt

Fix crashes in split_all_insns

From-SVN: r37155
parent 332316cd
......@@ -17,6 +17,11 @@
Renumber case labels to match the _mm_prefetch constants defined in
xmmintrin.h.
* recog.c (split_all_insns): Don't try to call cleanup_subreg_operands
if the splitter didn't emit new insns.
Make sure we call cleanup_subreg_operands even when splitting the last
insn in a basic block.
2000-10-30 Neil Booth <neilb@earthling.net>
* cppfiles.c (stack_include_file): Check for stacked contexts
......
......@@ -2747,29 +2747,31 @@ split_all_insns (upd_life)
changed = 1;
/* try_split returns the NOTE that INSN became. */
first = NEXT_INSN (first);
PUT_CODE (insn, NOTE);
NOTE_SOURCE_FILE (insn) = 0;
NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
/* ??? Coddle to md files that generate subregs in post-
reload splitters instead of computing the proper
hard register. */
if (reload_completed && first != last)
{
first = NEXT_INSN (first);
while (1)
{
if (INSN_P (first))
cleanup_subreg_operands (first);
if (first == last)
break;
first = NEXT_INSN (first);
}
}
if (insn == bb->end)
{
bb->end = last;
break;
}
/* ??? Coddle to md files that generate subregs in post-
reload splitters instead of computing the proper
hard register. */
if (reload_completed)
while (1)
{
if (INSN_P (first))
cleanup_subreg_operands (first);
if (first == last)
break;
first = NEXT_INSN (first);
}
}
}
......
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