From 68daafd46e0cbbfbca193893fbfe9053cf0eae80 Mon Sep 17 00:00:00 2001 From: James Van Artsdalen Date: Thu, 17 Sep 1992 05:21:44 +0000 Subject: [PATCH] (print_operand): Don't abort if error: might have been a user asm. From-SVN: r2141 --- gcc/config/i386/i386.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index c39da9bd90c3..e6e1d2016da4 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -1058,7 +1058,12 @@ print_operand (file, x, code) break; default: - abort (); + { + char str[50]; + + sprintf (str, "invalid operand code `%c'", code); + output_operand_lossage (str); + } } } if (GET_CODE (x) == REG) -- 2.43.5