Call fatal_insn instead of abort

From-SVN: r19635
This commit is contained in:
Michael Meissner 1998-05-08 15:24:08 +00:00 committed by Michael Meissner
parent d7c2e385ea
commit cf879efaf4
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Fri May 8 18:23:08 1998 Michael Meissner <meissner@cygnus.com>
* final.c (final_scan_insn): Call fatal_insn instead of abort if
we could not split an insn when required to.
Fri May 8 14:13:21 1998 H.J. Lu (hjl@gnu.org)
* reload1.c (emit_reload_insns): When performing expensive

View File

@ -2778,7 +2778,7 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes)
/* If we didn't split the insn, go away. */
if (new == insn && PATTERN (new) == body)
abort ();
fatal_insn ("Could not split insn", insn);
#ifdef HAVE_ATTR_length
/* This instruction should have been split in shorten_branches,