From 559c577b2bf93650d2e8da898979cffe26fe20a3 Mon Sep 17 00:00:00 2001 From: Dave Anglin Date: Thu, 13 Oct 2005 01:06:01 +0000 Subject: PR binutils/941 * config/tc-hppa.c (pa_ip): Use as_bad instead of as_fatal when an unknown opcode is found. --- gas/config/tc-hppa.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gas/config') diff --git a/gas/config/tc-hppa.c b/gas/config/tc-hppa.c index 7615eb0..f02e475 100644 --- a/gas/config/tc-hppa.c +++ b/gas/config/tc-hppa.c @@ -1622,7 +1622,8 @@ pa_ip (str) break; default: - as_fatal (_("Unknown opcode: `%s'"), str); + as_bad (_("Unknown opcode: `%s'"), str); + return; } /* Look up the opcode in the has table. */ -- cgit v1.1