Fix ARI warning about function names in first column.
[deliverable/binutils-gdb.git] / gdb / mipsnbsd-nat.c
index 6d160c1ddeb29a19b93c51d1b0362ae06a827576..d85b6d9b5641b96ff4aa46bcb18f0138de5b35d1 100644 (file)
@@ -1,6 +1,6 @@
 /* Native-dependent code for MIPS systems running NetBSD.
 
-   Copyright (C) 2000, 2001, 2002, 2004, 2007, 2008, 2009
+   Copyright (C) 2000, 2001, 2002, 2004, 2007, 2008, 2009, 2010, 2011
    Free Software Foundation, Inc.
 
    This file is part of GDB.
@@ -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; 
 
This page took 0.024298 seconds and 4 git commands to generate.