public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r13-704] RISC-V: Fix canonical extension order (K and J)
@ 2022-05-23  2:51 Kito Cheng
  0 siblings, 0 replies; only message in thread
From: Kito Cheng @ 2022-05-23  2:51 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:075fb873c264a030f56793cb162c9fdecbdd1773

commit r13-704-g075fb873c264a030f56793cb162c9fdecbdd1773
Author: Tsukasa OI <research_trasio@irq.a4lg.com>
Date:   Sun May 22 18:29:14 2022 +0900

    RISC-V: Fix canonical extension order (K and J)
    
    This commit fixes canonical extension order to follow the RISC-V ISA
    Manual draft-20210402-1271737 or later.
    
    gcc/ChangeLog:
    
            * common/config/riscv/riscv-common.cc (riscv_supported_std_ext):
            Fix "K" extension prefix to be placed before "J".
            * config/riscv/arch-canonicalize: Likewise.
    
    Signed-off-by: Tsukasa OI <research_trasio@irq.a4lg.com>

Diff:
---
 gcc/common/config/riscv/riscv-common.cc | 2 +-
 gcc/config/riscv/arch-canonicalize      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gcc/common/config/riscv/riscv-common.cc b/gcc/common/config/riscv/riscv-common.cc
index 1501242e296..0b0ec2c4ec5 100644
--- a/gcc/common/config/riscv/riscv-common.cc
+++ b/gcc/common/config/riscv/riscv-common.cc
@@ -594,7 +594,7 @@ riscv_subset_list::lookup (const char *subset, int major_version,
 static const char *
 riscv_supported_std_ext (void)
 {
-  return "mafdqlcbjktpvn";
+  return "mafdqlcbkjtpvn";
 }
 
 /* Parsing subset version.
diff --git a/gcc/config/riscv/arch-canonicalize b/gcc/config/riscv/arch-canonicalize
index 41bab69193c..71b2232b29e 100755
--- a/gcc/config/riscv/arch-canonicalize
+++ b/gcc/config/riscv/arch-canonicalize
@@ -32,7 +32,7 @@ import itertools
 from functools import reduce
 
 SUPPORTED_ISA_SPEC = ["2.2", "20190608", "20191213"]
-CANONICAL_ORDER = "imafdgqlcbjktpvn"
+CANONICAL_ORDER = "imafdgqlcbkjtpvn"
 LONG_EXT_PREFIXES = ['z', 's', 'h', 'x']
 
 #


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-05-23  2:51 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-23  2:51 [gcc r13-704] RISC-V: Fix canonical extension order (K and J) Kito Cheng

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).