aboutsummaryrefslogtreecommitdiff
path: root/gdb/mipsnbsd-nat.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/mipsnbsd-nat.c')
-rw-r--r--gdb/mipsnbsd-nat.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/mipsnbsd-nat.c b/gdb/mipsnbsd-nat.c
index 58ac572..d85b6d9 100644
--- a/gdb/mipsnbsd-nat.c
+++ b/gdb/mipsnbsd-nat.c
@@ -57,7 +57,8 @@ mipsnbsd_fetch_inferior_registers (struct target_ops *ops,
return;
}
- if (regno == -1 || regno >= gdbarch_fp0_regnum (get_regcache_arch (regcache)))
+ if (regno == -1
+ || regno >= gdbarch_fp0_regnum (get_regcache_arch (regcache)))
{
struct fpreg fpregs;
@@ -92,7 +93,8 @@ mipsnbsd_store_inferior_registers (struct target_ops *ops,
return;
}
- if (regno == -1 || regno >= gdbarch_fp0_regnum (get_regcache_arch (regcache)))
+ if (regno == -1
+ || regno >= gdbarch_fp0_regnum (get_regcache_arch (regcache)))
{
struct fpreg fpregs;