Commit ce99549f by Ian Lance Taylor Committed by Ian Lance Taylor

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
parent ddf74938
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
......
......@@ -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);
}
......
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