RISC-V: Remove non-existing 'Zve32d' extension

Message ID 7997c0b9f3f205d6e16fa5017503dd8f80f5e951.1691561357.git.research_trasio@irq.a4lg.com
State Accepted
Headers
Series RISC-V: Remove non-existing 'Zve32d' extension |

Checks

Context Check Description
snail/gcc-patch-check success Github commit url

Commit Message

Tsukasa OI Aug. 9, 2023, 6:09 a.m. UTC
  From: Tsukasa OI <research_trasio@irq.a4lg.com>

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.
---
 gcc/common/config/riscv/riscv-common.cc | 1 -
 1 file changed, 1 deletion(-)


base-commit: c8b396243ec5bfa9b541555131df597ebc84b9d0
  

Comments

Jeff Law Aug. 9, 2023, 8 p.m. UTC | #1
On 8/9/23 00:09, Tsukasa OI via Gcc-patches wrote:
> 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.
Thanks.  Installed.
jeff
  

Patch

diff --git a/gcc/common/config/riscv/riscv-common.cc b/gcc/common/config/riscv/riscv-common.cc
index 2eb8c7cadff0..f25131eab28b 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},