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:
parent
ddf7493859
commit
ce99549f58
@ -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
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user