mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-03 15:42:52 +00:00
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:
parent
3e8a519c72
commit
559c577b2b
@ -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.
|
||||
|
@ -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. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user