From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7803) id 4297A38560A7; Mon, 4 Jul 2022 01:37:05 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4297A38560A7 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Nelson Chu To: bfd-cvs@sourceware.org Subject: [binutils-gdb] RISC-V: Update Zihintpause extension version X-Act-Checkin: binutils-gdb X-Git-Author: Tsukasa OI X-Git-Refname: refs/heads/master X-Git-Oldrev: 1e3a4f12e7d9a62b4a97bad7df922862b6739a5d X-Git-Newrev: 0f2f2e7019f6c3415069a5bf5f47064d45d87571 Message-Id: <20220704013705.4297A38560A7@sourceware.org> Date: Mon, 4 Jul 2022 01:37:05 +0000 (GMT) X-BeenThere: binutils-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Binutils-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jul 2022 01:37:05 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D0f2f2e7019f6= c3415069a5bf5f47064d45d87571 commit 0f2f2e7019f6c3415069a5bf5f47064d45d87571 Author: Tsukasa OI Date: Sun Jul 3 19:31:23 2022 +0900 RISC-V: Update Zihintpause extension version =20 Because ratified Zihintpause extension has a version number of 2.0 (not 1.0), we should update the number. =20 bfd/ChangeLog: =20 * elfxx-riscv.c (riscv_supported_std_z_ext): Update version number of Zihintpause extension. Diff: --- 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 bf7dc20e892..c846d6baaa2 100644 --- a/bfd/elfxx-riscv.c +++ b/bfd/elfxx-riscv.c @@ -1185,7 +1185,7 @@ static struct riscv_supported_ext riscv_supported_std= _z_ext[] =3D {"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 }, {"zfh", ISA_SPEC_CLASS_DRAFT, 1, 0, 0 }, {"zfinx", ISA_SPEC_CLASS_DRAFT, 1, 0, 0 }, {"zdinx", ISA_SPEC_CLASS_DRAFT, 1, 0, 0 },