diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-18 20:50:41 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-18 20:50:41 +0000 |
commit | a00bfe5142d2d7fdf388e3863cf4829fe81c2351 (patch) | |
tree | 59bda940348d663b4d9a84cdb9328b9c2af7c574 /gcc/final.c | |
parent | a84e06fa27bce4b2db1311834b2271af32de1d76 (diff) | |
download | ppe42-gcc-a00bfe5142d2d7fdf388e3863cf4829fe81c2351.tar.gz ppe42-gcc-a00bfe5142d2d7fdf388e3863cf4829fe81c2351.zip |
* final.c (output_operand_lossage): Use internal_error, not error.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39850 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/final.c b/gcc/final.c index 1fd30c2847d..70d6add6818 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -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)); } /* Output of assembler code from a template, and its subroutines. */ |