mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-22 02:50:08 +08: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:
@ -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>
|
2005-10-12 Mark Mitchell <mark@codesourcery.com>
|
||||||
|
|
||||||
* NEWS: Mention @file.
|
* NEWS: Mention @file.
|
||||||
|
@ -1622,7 +1622,8 @@ pa_ip (str)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
as_fatal (_("Unknown opcode: `%s'"), str);
|
as_bad (_("Unknown opcode: `%s'"), str);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Look up the opcode in the has table. */
|
/* Look up the opcode in the has table. */
|
||||||
|
Reference in New Issue
Block a user