* final.c (output_operand_lossage): Use internal_error, not error.
authorRichard Kenner <kenner@vlsi1.ultra.nyu.edu>
Sun, 18 Feb 2001 20:50:41 +0000 (20:50 +0000)
committerRichard Kenner <kenner@gcc.gnu.org>
Sun, 18 Feb 2001 20:50:41 +0000 (15:50 -0500)
From-SVN: r39850

gcc/ChangeLog
gcc/final.c

index b76448443294421e10f3bdabf733bb4e4631a905..79a0fa311b459c58f641fb251209f220a394cc87 100644 (file)
@@ -1,3 +1,7 @@
+Sun Feb 18 15:45:17 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
+
+       * final.c (output_operand_lossage): Use internal_error, not error.
+
 2001-02-18  Shane Nay  <shane@agendacomputing.com>
 
        * mips.c (mips_expand_prologue) Add REG_MAYBE_DEAD to 
index 1fd30c2847d5120a0f61ecb3b12983b35b3c9e54..70d6add68182fa099108f5138d7b347029a6f6c5 100644 (file)
@@ -3390,10 +3390,7 @@ output_operand_lossage (msgid)
   if (this_is_asm_operands)
     error_for_asm (this_is_asm_operands, "invalid `asm': %s", _(msgid));
   else
-    {
-      error ("output_operand: %s", _(msgid));
-      abort ();
-    }
+    internal_error ("output_operand: %s", _(msgid));
 }
 \f
 /* Output of assembler code from a template, and its subroutines.  */