From: Tsukasa OI Date: Wed, 9 Aug 2023 19:59:43 +0000 (-0600) Subject: RISC-V: Remove non-existing 'Zve32d' extension X-Git-Tag: basepoints/gcc-15~7026 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e5fe7f2fd69d5a950d8c1e2a068669bda376b2d4;p=thirdparty%2Fgcc.git 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. --- 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},