Commit 31bfbf1f by Michael Meissner Committed by Michael Meissner

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

From-SVN: r19580
parent e9a780ec
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. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment