From: Dave Anglin Date: Thu, 13 Oct 2005 01:06:01 +0000 (+0000) Subject: PR binutils/941 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=559c577b2bf93650d2e8da898979cffe26fe20a3;p=binutils-gdb.git PR binutils/941 * config/tc-hppa.c (pa_ip): Use as_bad instead of as_fatal when an unknown opcode is found. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index e9c34b4315c..b625a45bf84 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2005-10-12 John David Anglin + + PR binutils/941 + * config/tc-hppa.c (pa_ip): Use as_bad instead of as_fatal when an + unknown opcode is found. + 2005-10-12 Mark Mitchell * NEWS: Mention @file. diff --git a/gas/config/tc-hppa.c b/gas/config/tc-hppa.c index 7615eb068d4..f02e4756f8a 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. */