aboutsummaryrefslogtreecommitdiff
path: root/gdb/mips-netbsd-nat.c
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@polymtl.ca>2023-02-08 15:36:23 -0500
committerSimon Marchi <simon.marchi@polymtl.ca>2023-02-08 15:46:02 -0500
commitc583a2520616c2736cffc389c89a48b159366e6c (patch)
treeb4925f26506fcee96c16119431c01760f05db95d /gdb/mips-netbsd-nat.c
parentca7f92c2f15b86b09c4a8ad14806bef666308d31 (diff)
downloadgdb-users/simark/clang-format.zip
gdb-users/simark/clang-format.tar.gz
gdb-users/simark/clang-format.tar.bz2
Run clang-format.shusers/simark/clang-format
Change-Id: Ia948cc26d534b0dd02702244d52434b1a2093968
Diffstat (limited to 'gdb/mips-netbsd-nat.c')
-rw-r--r--gdb/mips-netbsd-nat.c23
1 files changed, 11 insertions, 12 deletions
diff --git a/gdb/mips-netbsd-nat.c b/gdb/mips-netbsd-nat.c
index bdac40e..4c7e91a 100644
--- a/gdb/mips-netbsd-nat.c
+++ b/gdb/mips-netbsd-nat.c
@@ -60,20 +60,19 @@ mips_nbsd_nat_target::fetch_registers (struct regcache *regcache, int regno)
struct reg regs;
if (ptrace (PT_GETREGS, pid, (PTRACE_TYPE_ARG3) &regs, 0) == -1)
- perror_with_name (_("Couldn't get registers"));
-
+ perror_with_name (_ ("Couldn't get registers"));
+
mipsnbsd_supply_reg (regcache, (char *) &regs, regno);
if (regno != -1)
return;
}
- if (regno == -1
- || regno >= gdbarch_fp0_regnum (regcache->arch ()))
+ if (regno == -1 || regno >= gdbarch_fp0_regnum (regcache->arch ()))
{
struct fpreg fpregs;
if (ptrace (PT_GETFPREGS, pid, (PTRACE_TYPE_ARG3) &fpregs, 0) == -1)
- perror_with_name (_("Couldn't get floating point status"));
+ perror_with_name (_ ("Couldn't get floating point status"));
mipsnbsd_supply_fpreg (regcache, (char *) &fpregs, regno);
}
@@ -90,33 +89,33 @@ mips_nbsd_nat_target::store_registers (struct regcache *regcache, int regno)
struct reg regs;
if (ptrace (PT_GETREGS, pid, (PTRACE_TYPE_ARG3) &regs, 0) == -1)
- perror_with_name (_("Couldn't get registers"));
+ perror_with_name (_ ("Couldn't get registers"));
mipsnbsd_fill_reg (regcache, (char *) &regs, regno);
if (ptrace (PT_SETREGS, pid, (PTRACE_TYPE_ARG3) &regs, 0) == -1)
- perror_with_name (_("Couldn't write registers"));
+ perror_with_name (_ ("Couldn't write registers"));
if (regno != -1)
return;
}
- if (regno == -1
- || regno >= gdbarch_fp0_regnum (regcache->arch ()))
+ if (regno == -1 || regno >= gdbarch_fp0_regnum (regcache->arch ()))
{
- struct fpreg fpregs;
+ struct fpreg fpregs;
if (ptrace (PT_GETFPREGS, pid, (PTRACE_TYPE_ARG3) &fpregs, 0) == -1)
- perror_with_name (_("Couldn't get floating point status"));
+ perror_with_name (_ ("Couldn't get floating point status"));
mipsnbsd_fill_fpreg (regcache, (char *) &fpregs, regno);
if (ptrace (PT_SETFPREGS, pid, (PTRACE_TYPE_ARG3) &fpregs, 0) == -1)
- perror_with_name (_("Couldn't write floating point status"));
+ perror_with_name (_ ("Couldn't write floating point status"));
}
}
void _initialize_mipsnbsd_nat ();
+
void
_initialize_mipsnbsd_nat ()
{