Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/riscv/riscv Trailing whitespace
details: https://anonhg.NetBSD.org/src/rev/771e6faa2f34
branches: trunk
changeset: 983050:771e6faa2f34
user: skrll <skrll%NetBSD.org@localhost>
date: Sat May 01 06:48:51 2021 +0000
description:
Trailing whitespace
diffstat:
sys/arch/riscv/riscv/db_disasm.c | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diffs (63 lines):
diff -r 9a0942045cfc -r 771e6faa2f34 sys/arch/riscv/riscv/db_disasm.c
--- a/sys/arch/riscv/riscv/db_disasm.c Sat May 01 06:45:23 2021 +0000
+++ b/sys/arch/riscv/riscv/db_disasm.c Sat May 01 06:48:51 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: db_disasm.c,v 1.6 2021/04/20 10:15:34 skrll Exp $ */
+/* $NetBSD: db_disasm.c,v 1.7 2021/05/01 06:48:51 skrll Exp $ */
/*-
* Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
#include <sys/cdefs.h>
-__RCSID("$NetBSD: db_disasm.c,v 1.6 2021/04/20 10:15:34 skrll Exp $");
+__RCSID("$NetBSD: db_disasm.c,v 1.7 2021/05/01 06:48:51 skrll Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -97,7 +97,7 @@
* size. I've used the #defines for that to conditionalize it, on the
* grounds that ddb is disassembling itself so the build machine
* version is the target machine version. This is not true for crash
- * necessarily but I don't think
+ * necessarily but I don't think
*/
#define COMBINE(op, q) (((op) << 2) | (q))
@@ -153,7 +153,7 @@
rd = INSN16_RS2x(insn);
#if __riscv_xlen < 128
imm = INSN16_IMM_CL_D(insn);
- db_printf("c.fld f%d, %d(%s)\n", rd, (int32_t)imm,
+ db_printf("c.fld f%d, %d(%s)\n", rd, (int32_t)imm,
riscv_registers[rs1]);
#else
imm = INSN16_IMM_CL_Q(insn);
@@ -173,7 +173,7 @@
rd = INSN16_RS2x(insn);
#if __riscv_xlen == 32
imm = INSN16_IMM_CL_W(insn);
- db_printf("c.flw f%d, %d(%s)\n", rd, (int32_t)imm,
+ db_printf("c.flw f%d, %d(%s)\n", rd, (int32_t)imm,
riscv_registers[rs1]);
#else
imm = INSN16_IMM_CL_D(insn);
@@ -186,7 +186,7 @@
rs2 = INSN16_RS2x(insn);
#if __riscv_xlen < 128
imm = INSN16_IMM_CS_D(insn);
- db_printf("c.fsd f%d, %d(%s)\n", rs2, (int32_t)imm,
+ db_printf("c.fsd f%d, %d(%s)\n", rs2, (int32_t)imm,
riscv_registers[rs1]);
#else
imm = INSN16_IMM_CS_Q(insn);
@@ -206,7 +206,7 @@
rs2 = INSN16_RS2x(insn);
#if __riscv_xlen == 32
imm = INSN16_IMM_CS_W(insn);
- db_printf("c.fsw f%d, %d(%s)\n", rs2, (int32_t)imm,
+ db_printf("c.fsw f%d, %d(%s)\n", rs2, (int32_t)imm,
riscv_registers[rs1]);
#else
imm = INSN16_IMM_CS_D(insn);
Home |
Main Index |
Thread Index |
Old Index