From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-sender-0.a4lg.com (mail-sender.a4lg.com [153.120.152.154]) by sourceware.org (Postfix) with ESMTPS id D98963858D20 for ; Fri, 11 Aug 2023 02:00:37 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org D98963858D20 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=irq.a4lg.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=irq.a4lg.com Received: from [127.0.0.1] (localhost [127.0.0.1]) by mail-sender-0.a4lg.com (Postfix) with ESMTPSA id 7378F300089; Fri, 11 Aug 2023 02:00:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=irq.a4lg.com; s=2017s01; t=1691719232; bh=eXdWnmM23ZjqkljBVyv9I3udWceBAZIzYJoI7KgcKJU=; h=Message-ID:Date:Mime-Version:From:Subject:To:Cc:References: In-Reply-To:Content-Type:Content-Transfer-Encoding; b=WVxvPJ+SnPS6SKWM+3vNEregcmRsCVBhUN9F6gOagaJwm8RDNWp2otofv7UvA4DZb ynTRuA2KpEccNucbenFPk0w0EhoAgP9FeeSEnedKvkDd+pNoPSB6hLY0jEWyDE7TXn QLlZj7HHB1S8iQsnF74wWNdgj+RyU6YFK9Rh5hcI= Message-ID: Date: Fri, 11 Aug 2023 11:00:30 +0900 Mime-Version: 1.0 From: Tsukasa OI Subject: Re: [PATCH] RISC-V: Remove support for non-existing 'Zve32d' To: Nelson Chu , Palmer Dabbelt Cc: binutils@sourceware.org References: Content-Language: en-US In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-12.1 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,GIT_PATCH_0,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On 2023/08/11 9:38, Nelson Chu wrote: > Okay, seems it's just a > typo, https://github.com/riscv/riscv-v-spec/commit/3af89ab16dd0ea85b15db35a2cd3c94aae5859a5 . Oh, that was also a very "close-to-ratified-1.0" change. On 2023/08/11 10:51, Palmer Dabbelt wrote: > Reviewed-by: Palmer Dabbelt Thanks you two for reviewing! Committed. Thanks, Tsukasa > > Thanks > Nelson > > On Thu, Aug 3, 2023 at 9:19 AM Tsukasa OI > wrote: > > From: Tsukasa OI > > > Since this "extension" does not exist (on the other hand, 'Zve64d' > exists) > and it's not useful if we keep it (as other code portions just ignore > "zve32d"), this commit just removes it. > > bfd/ChangeLog: > >         * elfxx-riscv.c (riscv_supported_std_z_ext): Remove 'Zve32d' >         extension from the list. > --- >  bfd/elfxx-riscv.c | 1 - >  1 file changed, 1 deletion(-) > > diff --git a/bfd/elfxx-riscv.c b/bfd/elfxx-riscv.c > index ba5165766b2b..1971e6ba6a6b 100644 > --- a/bfd/elfxx-riscv.c > +++ b/bfd/elfxx-riscv.c > @@ -1280,7 +1280,6 @@ static struct riscv_supported_ext > riscv_supported_std_z_ext[] = >    {"zkt",              ISA_SPEC_CLASS_DRAFT,           1, 0,  0 }, >    {"zve32x",           ISA_SPEC_CLASS_DRAFT,           1, 0,  0 }, >    {"zve32f",           ISA_SPEC_CLASS_DRAFT,           1, 0,  0 }, > -  {"zve32d",           ISA_SPEC_CLASS_DRAFT,           1, 0,  0 }, >    {"zve64x",           ISA_SPEC_CLASS_DRAFT,           1, 0,  0 }, >    {"zve64f",           ISA_SPEC_CLASS_DRAFT,           1, 0,  0 }, >    {"zve64d",           ISA_SPEC_CLASS_DRAFT,           1, 0,  0 }, > > base-commit: 4b177a76d5b759ba631568fb69e8750e99b43647 > -- > 2.41.0 >