From 899748950c12ee446bb394bb9660da1034bfbdc9 Mon Sep 17 00:00:00 2001 From: Nelson Chu Date: Fri, 18 Aug 2023 11:51:04 +0800 Subject: RISC-V: Report "c or zca" for INSN_CLASS_C when error reporting. 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(-) diff --git a/bfd/elfxx-riscv.c b/bfd/elfxx-riscv.c index e9852ef..cb65024 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"); case INSN_CLASS_F_AND_C: if (!riscv_subset_supports (rps, "f")) { -- cgit v1.1