From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7896) id 0B7E13858C39; Fri, 14 Oct 2022 05:23:15 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 0B7E13858C39 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] opcodes/riscv-dis.c: Tidying with spacing X-Act-Checkin: binutils-gdb X-Git-Author: Tsukasa OI X-Git-Refname: refs/heads/master X-Git-Oldrev: 2b8fd83908ea61d9fb2215de5eb585870658fa89 X-Git-Newrev: 1469f944d1d3f6c0f94c15716fdb74f9240a5136 Message-Id: <20221014052315.0B7E13858C39@sourceware.org> Date: Fri, 14 Oct 2022 05:23:15 +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: Fri, 14 Oct 2022 05:23:15 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D1469f944d1d3= f6c0f94c15716fdb74f9240a5136 commit 1469f944d1d3f6c0f94c15716fdb74f9240a5136 Author: Tsukasa OI Date: Sat Aug 27 13:07:34 2022 +0000 opcodes/riscv-dis.c: Tidying with spacing =20 Before changing the core disassembler, we take care of minor code clari= ty issues and improve readability. =20 This commit takes care of improper spacing for code clarity. =20 opcodes/ChangeLog: =20 * riscv-dis.c (riscv_disassemble_insn): Tidying with spacing. Diff: --- opcodes/riscv-dis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opcodes/riscv-dis.c b/opcodes/riscv-dis.c index 2d1faf26eb3..088d0d91080 100644 --- a/opcodes/riscv-dis.c +++ b/opcodes/riscv-dis.c @@ -715,7 +715,7 @@ riscv_disassemble_insn (bfd_vma memaddr, insn_t word, d= isassemble_info *info) } =20 /* If arch has the Zfinx extension, replace FPR with GPR. */ - if(riscv_subset_supports (&riscv_rps_dis, "zfinx")) + if (riscv_subset_supports (&riscv_rps_dis, "zfinx")) riscv_fpr_names =3D riscv_gpr_names; =20 for (; op->name; op++)