[Committed] RISC-V: Report "c or zca" for INSN_CLASS_C when error reporting.
Checks
Commit Message
bfd/
* elfxx-riscv.c (riscv_multi_subset_supports_ext): Return "c or zca"
rather than "c".
---
bfd/elfxx-riscv.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Comments
On Aug 18 2023, Nelson Chu wrote:
> diff --git a/bfd/elfxx-riscv.c b/bfd/elfxx-riscv.c
> index e9852ef8fa1..cb65024beaf 100644
> --- a/bfd/elfxx-riscv.c
> +++ b/bfd/elfxx-riscv.c
> @@ -2625,7 +2625,7 @@ riscv_multi_subset_supports_ext (riscv_parse_subset_t *rps,
> case INSN_CLASS_Q:
> return "q";
> case INSN_CLASS_C:
> - return "c";
> + return _("c' or `zca");
That text is substituted into a longer sentence, and not i18n friendly.
@@ -2625,7 +2625,7 @@ riscv_multi_subset_supports_ext (riscv_parse_subset_t *rps,
case INSN_CLASS_Q:
return "q";
case INSN_CLASS_C:
- return "c";
+ return _("c' or `zca");
case INSN_CLASS_F_AND_C:
if (!riscv_subset_supports (rps, "f"))
{