PR binutils/941

* config/tc-hppa.c (pa_ip): Use as_bad instead of as_fatal when an
	unknown opcode is found.
This commit is contained in:
Dave Anglin 2005-10-13 01:06:01 +00:00
parent 3e8a519c72
commit 559c577b2b
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2005-10-12 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
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 <mark@codesourcery.com>
* NEWS: Mention @file.

View File

@ -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. */