Make output_operand_lossage report the real error, do not just call abort

From-SVN: r19580
This commit is contained in:
Michael Meissner 1998-05-06 14:21:02 +00:00 committed by Michael Meissner
parent e9a780ecec
commit 31bfbf1f68
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Wed May 6 17:07:47 1998 Michael Meissner <meissner@cygnus.com>
* final.c (output_operand_lossage): Call fatal with the operand
lossage message instead of calling abort.
Wed May 6 15:37:27 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* c-common.c: Convert to using ctype macros defined in system.h.

View File

@ -3143,7 +3143,7 @@ output_operand_lossage (str)
if (this_is_asm_operands)
error_for_asm (this_is_asm_operands, "invalid `asm': %s", str);
else
abort ();
fatal ("Internal compiler error, output_operand_lossage `%s'", str);
}
/* Output of assembler code from a template, and its subroutines. */