From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7896) id 7D7213858D33; Tue, 8 Aug 2023 05:24:08 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 7D7213858D33 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Tsukasa OI To: bfd-cvs@sourceware.org Subject: [binutils-gdb] RISC-V: Update ratified 'Ztso' extension version X-Act-Checkin: binutils-gdb X-Git-Author: Tsukasa OI X-Git-Refname: refs/heads/master X-Git-Oldrev: d734d43a048b33ee12df2c06c2e782887e9715f6 X-Git-Newrev: e3f5898021ba21d9ad855b325cef92019a17b04d Message-Id: <20230808052408.7D7213858D33@sourceware.org> Date: Tue, 8 Aug 2023 05:24:08 +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: Tue, 08 Aug 2023 05:24:08 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3De3f5898021ba= 21d9ad855b325cef92019a17b04d commit e3f5898021ba21d9ad855b325cef92019a17b04d Author: Tsukasa OI Date: Tue Aug 8 04:30:41 2023 +0000 RISC-V: Update ratified 'Ztso' extension version =20 Because the 'Ztso' extension is now ratified, it has a version number o= f 1.0 (not 0.1). This commit updates the number. =20 bfd/ChangeLog: =20 * elfxx-riscv.c (riscv_supported_std_z_ext): Update the version number of the 'Ztso' extension since it's ratified. 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 ee459872948..bc0c68940a6 100644 --- a/bfd/elfxx-riscv.c +++ b/bfd/elfxx-riscv.c @@ -1317,7 +1317,7 @@ static struct riscv_supported_ext riscv_supported_std= _z_ext[] =3D {"zvl16384b", ISA_SPEC_CLASS_DRAFT, 1, 0, 0 }, {"zvl32768b", ISA_SPEC_CLASS_DRAFT, 1, 0, 0 }, {"zvl65536b", ISA_SPEC_CLASS_DRAFT, 1, 0, 0 }, - {"ztso", ISA_SPEC_CLASS_DRAFT, 0, 1, 0 }, + {"ztso", ISA_SPEC_CLASS_DRAFT, 1, 0, 0 }, {"zca", ISA_SPEC_CLASS_DRAFT, 1, 0, 0 }, {"zcb", ISA_SPEC_CLASS_DRAFT, 1, 0, 0 }, {"zcf", ISA_SPEC_CLASS_DRAFT, 1, 0, 0 },