mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-11 18:06:03 +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:
@ -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. */
|
||||
|
Reference in New Issue
Block a user