Skip to content

Commit

Permalink
opcodes/riscv-dis.c: Tidying with spacing
Browse files Browse the repository at this point in the history
Before changing the core disassembler, we take care of minor code clarity
issues and improve readability.

This commit takes care of improper spacing for code clarity.

opcodes/ChangeLog:

	* riscv-dis.c (riscv_disassemble_insn): Tidying with spacing.
  • Loading branch information
a4lg committed Oct 14, 2022
1 parent 2b8fd83 commit 1469f94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opcodes/riscv-dis.c
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@ riscv_disassemble_insn (bfd_vma memaddr, insn_t word, disassemble_info *info)
}

/* 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 = riscv_gpr_names;

for (; op->name; op++)
Expand Down

0 comments on commit 1469f94

Please sign in to comment.