From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-sender-0.a4lg.com (mail-sender-0.a4lg.com [IPv6:2401:2500:203:30b:4000:6bfe:4757:0]) by sourceware.org (Postfix) with ESMTPS id 2F7663858D20 for ; Wed, 9 Aug 2023 23:37:33 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 2F7663858D20 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 6D6FC300089; Wed, 9 Aug 2023 23:37:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=irq.a4lg.com; s=2017s01; t=1691624249; bh=8LGCOncQEI3ZDoNIRlqD6K1bPm2exBxj2ui6RBWRZQ8=; h=Message-ID:Date:Mime-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type:Content-Transfer-Encoding; b=AP/fQyxN1YjLCFHBjVIHQSYhraj2tdSanICcNmXugOc0c8gha7ldfKBlRpIC9hUns +RjpSOGIxLzeO3dJGz6G0c2o7gKoH9iYFoTbnWVDlT6B9hDOCfYqASBrurCDnRMmKI HXEet6OtHOsenjbFSkLrnNuWE/Lg6GrXDFCYgw8Q= Message-ID: <115866d9-af06-4fe9-a8ad-ff9ddeb71ea8@irq.a4lg.com> Date: Thu, 10 Aug 2023 08:37:28 +0900 Mime-Version: 1.0 Subject: Re: [PATCH] RISC-V: Remove support for non-existing 'Zve32d' Content-Language: en-US To: Palmer Dabbelt , Andrew Waterman , Jim Wilson , Nelson Chu , Kito Cheng Cc: binutils@sourceware.org References: From: Tsukasa OI In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-12.1 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,GIT_PATCH_0,KAM_SHORT,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: Note that GCC counterpart is merged. Thanks, Tsukasa On 2023/08/03 10:19, 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