From 559c577b2bf93650d2e8da898979cffe26fe20a3 Mon Sep 17 00:00:00 2001 From: Dave Anglin Date: Thu, 13 Oct 2005 01:06:01 +0000 Subject: [PATCH] PR binutils/941 * config/tc-hppa.c (pa_ip): Use as_bad instead of as_fatal when an unknown opcode is found. --- gas/ChangeLog | 6 ++++++ gas/config/tc-hppa.c | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index e9c34b4315..b625a45bf8 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 7615eb068d..f02e4756f8 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. */ -- 2.34.1