Make output_operand_lossage report the real error, do not just call abort
From-SVN: r19580
This commit is contained in:
parent
e9a780ecec
commit
31bfbf1f68
2 changed files with 6 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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. */
|
||||
|
|
Loading…
Add table
Reference in a new issue