RISC-V: Improve "bits undefined" diagnostics
This commit improves internal error message "internal: bad RISC-V opcode (bits 0x%lx undefined): %s %s" to display actual unused bits (excluding non-instruction bits). gas/ChangeLog: * config/tc-riscv.c (validate_riscv_insn): Exclude non- instruction bits from displaying internal diagnostics. Change error message slightly.
This commit is contained in:
parent
83029f7ff5
commit
6b84c098e5
1 changed files with 2 additions and 2 deletions
|
@ -1398,8 +1398,8 @@ validate_riscv_insn (const struct riscv_opcode *opc, int length)
|
|||
if (used_bits != required_bits)
|
||||
{
|
||||
as_bad (_("internal: bad RISC-V opcode "
|
||||
"(bits 0x%lx undefined): %s %s"),
|
||||
~(unsigned long)(used_bits & required_bits),
|
||||
"(bits %#llx undefined or invalid): %s %s"),
|
||||
(unsigned long long)(used_bits ^ required_bits),
|
||||
opc->name, opc->args);
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue