aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTsukasa OI <research_trasio@irq.a4lg.com>2023-08-09 13:59:43 -0600
committerJeff Law <jlaw@ventanamicro.com>2023-08-09 13:59:43 -0600
commite5fe7f2fd69d5a950d8c1e2a068669bda376b2d4 (patch)
tree8954043bfd6ba6b221c6ad3c43a0b167d82fd070
parentf088b768d01ae42385697584a2bcac141685dce2 (diff)
downloadgcc-e5fe7f2fd69d5a950d8c1e2a068669bda376b2d4.zip
gcc-e5fe7f2fd69d5a950d8c1e2a068669bda376b2d4.tar.gz
gcc-e5fe7f2fd69d5a950d8c1e2a068669bda376b2d4.tar.bz2
RISC-V: Remove non-existing 'Zve32d' extension
Since this extension does not exist, this commit prunes this from the defined extension version table. gcc/ChangeLog: * common/config/riscv/riscv-common.cc (riscv_ext_version_table): Remove 'Zve32d' from the version list.
-rw-r--r--gcc/common/config/riscv/riscv-common.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/common/config/riscv/riscv-common.cc b/gcc/common/config/riscv/riscv-common.cc
index 2eb8c7c..f25131e 100644
--- a/gcc/common/config/riscv/riscv-common.cc
+++ b/gcc/common/config/riscv/riscv-common.cc
@@ -220,7 +220,6 @@ static const struct riscv_ext_version riscv_ext_version_table[] =
{"zve32x", ISA_SPEC_CLASS_NONE, 1, 0},
{"zve32f", ISA_SPEC_CLASS_NONE, 1, 0},
- {"zve32d", ISA_SPEC_CLASS_NONE, 1, 0},
{"zve64x", ISA_SPEC_CLASS_NONE, 1, 0},
{"zve64f", ISA_SPEC_CLASS_NONE, 1, 0},
{"zve64d", ISA_SPEC_CLASS_NONE, 1, 0},