reload1.c (do_output_reload): Add assertion rejecting a CALL_INSN.

* reload1.c (do_output_reload): Add assertion rejecting a
	CALL_INSN.

From-SVN: r109697
This commit is contained in:
Ian Lance Taylor 2006-01-14 05:30:32 +00:00 committed by Ian Lance Taylor
parent ddf7493859
commit ce99549f58
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-01-13 Ian Lance Taylor <ian@airs.com>
* reload1.c (do_output_reload): Add assertion rejecting a
CALL_INSN.
2006-01-13 Adam Nemet <anemet@caviumnetworks.com>
* combine.c (struct reg_stat): Add new fields truncation_label and

View File

@ -7140,7 +7140,7 @@ do_output_reload (struct insn_chain *chain, struct reload *rl, int j)
return;
/* If is a JUMP_INSN, we can't support output reloads yet. */
gcc_assert (!JUMP_P (insn));
gcc_assert (NONJUMP_INSN_P (insn));
emit_output_reload_insns (chain, rld + j, j);
}