RISC-V: Enable RVC on ".option arch, +zca" etc.
authorTsukasa OI <research_trasio@irq.a4lg.com>
Tue, 25 Jul 2023 01:40:09 +0000 (01:40 +0000)
committerTsukasa OI <research_trasio@irq.a4lg.com>
Tue, 25 Jul 2023 01:42:44 +0000 (01:42 +0000)
Since the 'Zca' extension is the new base of the compressed instructions,
this commit enables RVC *also* when the 'Zca' extension is enabled
via ".option arch" directive.

gas/ChangeLog:

* config/tc-riscv.c (s_riscv_option): Enable RVC also when the
'Zca' extension is enabled after an ".option arch" directive.

gas/config/tc-riscv.c

index 80c14a3cd2211e60da9811e7e997498214647058..aaf8b9be64fdf4b8a8635d221fab9edd509ab000 100644 (file)
@@ -4376,7 +4376,8 @@ s_riscv_option (int x ATTRIBUTE_UNUSED)
       riscv_reset_subsets_list_arch_str ();
 
       riscv_set_rvc (false);
-      if (riscv_subset_supports (&riscv_rps_as, "c"))
+      if (riscv_subset_supports (&riscv_rps_as, "c")
+         || riscv_subset_supports (&riscv_rps_as, "zca"))
        riscv_set_rvc (true);
 
       if (riscv_subset_supports (&riscv_rps_as, "ztso"))