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 1E004385DC03 for ; Tue, 24 May 2022 09:44:11 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 1E004385DC03 Received: from [127.0.0.1] (localhost [127.0.0.1]) by mail-sender-0.a4lg.com (Postfix) with ESMTPSA id 687E9300089; Tue, 24 May 2022 09:44:09 +0000 (UTC) Message-ID: <3f11f3f2-a83b-2588-623b-22cc0d1cbf33@irq.a4lg.com> Date: Tue, 24 May 2022 18:44:08 +0900 Mime-Version: 1.0 Subject: [PING][PATCH] RISC-V: Update Zihintpause extension version Content-Language: en-US To: Kito Cheng , Palmer Dabbelt , Nelson Chu References: Cc: Binutils From: Tsukasa OI In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-12.4 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, GIT_PATCH_0, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: binutils@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Binutils mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2022 09:44:12 -0000 On 2022/01/30 20:37, Tsukasa OI wrote: > Because ratified Zihintpause extension has a version number of 2.0 > (not 1.0), we should update the number. > > bfd/ChangeLog: > > * elfxx-riscv.c (riscv_supported_std_z_ext): Update version > number of Zihintpause extension. > --- > bfd/elfxx-riscv.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/bfd/elfxx-riscv.c b/bfd/elfxx-riscv.c > index 9f52bb545ac..29755a6cb0a 100644 > --- a/bfd/elfxx-riscv.c > +++ b/bfd/elfxx-riscv.c > @@ -1183,7 +1183,7 @@ static struct riscv_supported_ext riscv_supported_std_z_ext[] = > {"zicsr", ISA_SPEC_CLASS_20190608, 2, 0, 0 }, > {"zifencei", ISA_SPEC_CLASS_20191213, 2, 0, 0 }, > {"zifencei", ISA_SPEC_CLASS_20190608, 2, 0, 0 }, > - {"zihintpause", ISA_SPEC_CLASS_DRAFT, 1, 0, 0 }, > + {"zihintpause", ISA_SPEC_CLASS_DRAFT, 2, 0, 0 }, > {"zfinx", ISA_SPEC_CLASS_DRAFT, 1, 0, 0 }, > {"zdinx", ISA_SPEC_CLASS_DRAFT, 1, 0, 0 }, > {"zqinx", ISA_SPEC_CLASS_DRAFT, 1, 0, 0 }, > > base-commit: 35b5767cf47169d11aa059fce0ed5b0fc213045d Let me allow to send a ping. Original: https://sourceware.org/pipermail/binutils/2022-January/119545.html Some discussion: https://sourceware.org/pipermail/binutils/2022-February/119588.html I completely understand that my other fixes (except this and RV32Q) are relatively large and needs some time to review. I think this (and RV32Q patch) are completely safe to merge. Thanks, Tsukasa