aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMichael Meissner <meissner@cygnus.com>1998-05-08 15:24:08 +0000
committerMichael Meissner <meissner@gcc.gnu.org>1998-05-08 15:24:08 +0000
commitcf879efaf491d1baa09e884b2d5cf74e720a1c43 (patch)
tree5de2e0bdcc25740d3f18f9f4d80b86236f06114a /gcc
parentd7c2e385ea6be93ed92cbdeaa6b39215ad196dfb (diff)
downloadgcc-cf879efaf491d1baa09e884b2d5cf74e720a1c43.zip
gcc-cf879efaf491d1baa09e884b2d5cf74e720a1c43.tar.gz
gcc-cf879efaf491d1baa09e884b2d5cf74e720a1c43.tar.bz2
Call fatal_insn instead of abort
From-SVN: r19635
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/final.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 4f36e06..ad7a87e 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/final.c b/gcc/final.c
index 226f42f..6781456 100644
--- a/gcc/final.c
+++ b/gcc/final.c
@@ -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,