flow.c (propagate_one_insn): Change to use fatal_insn.
2002-01-15 Eric Christopher <echristo@redhat.com> * flow.c (propagate_one_insn): Change to use fatal_insn. From-SVN: r48899
This commit is contained in:
parent
0e1c7a5f36
commit
31fce3c491
2 changed files with 5 additions and 5 deletions
|
@ -1,3 +1,7 @@
|
|||
2002-01-15 Eric Christopher <echristo@redhat.com>
|
||||
|
||||
* flow.c (propagate_one_insn): Change to use fatal_insn.
|
||||
|
||||
2002-01-15 Kazu Hirata <kazu@hxi.com>
|
||||
|
||||
* expmed.c (extract_fixed_bit_field): Remove unused code.
|
||||
|
|
|
@ -1566,11 +1566,7 @@ propagate_one_insn (pbi, insn)
|
|||
|| (HAVE_sibcall_epilogue
|
||||
&& sibcall_epilogue_contains (insn)))
|
||||
&& find_reg_note (insn, REG_MAYBE_DEAD, NULL_RTX) == 0)
|
||||
{
|
||||
internal_error ("Attempt to delete prologue/epilogue insn:\n");
|
||||
debug_rtx (insn);
|
||||
abort ();
|
||||
}
|
||||
fatal_insn ("Attempt to delete prologue/epilogue insn:", insn);
|
||||
|
||||
/* Record sets. Do this even for dead instructions, since they
|
||||
would have killed the values if they hadn't been deleted. */
|
||||
|
|
Loading…
Add table
Reference in a new issue