mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 04:49:54 +08:00
RISC-V: Fix inconsistent error message (range)
This commit fixes inconsistent error message format involving compressed funct<n> fields. In specific, funct6 had an error message with range 0..2^<n> ("0..64") unlike other funct<n> fields with 0..2^<n>-1 (e.g. funct4 with "0..15"). gas/ChangeLog: * config/tc-riscv.c (riscv_ip): Fix inconsistent error message.
This commit is contained in:
@ -2582,7 +2582,7 @@ riscv_ip (char *str, struct riscv_cl_insn *ip, expressionS *imm_expr,
|
||||
|| imm_expr->X_add_number >= 64)
|
||||
{
|
||||
as_bad (_("bad value for compressed funct6 "
|
||||
"field, value must be 0...64"));
|
||||
"field, value must be 0...63"));
|
||||
break;
|
||||
}
|
||||
INSERT_OPERAND (CFUNCT6, *ip, imm_expr->X_add_number);
|
||||
|
Reference in New Issue
Block a user