2011-01-07 Michael Snyder <msnyder@vmware.com>
[deliverable/binutils-gdb.git] / gdb / alphabsd-nat.c
index e12c24b55a13cc63ec99854cd3051c88b2772e04..f10e3806cdc83bc61a8c93c7412a294ec832a518 100644 (file)
@@ -66,7 +66,8 @@ supply_fpregset (struct regcache *regcache, const fpregset_t *fpregsetp)
 }
 
 void
-fill_fpregset (const struct regcache *regcache, fpregset_t *fpregsetp, int regno)
+fill_fpregset (const struct regcache *regcache,
+              fpregset_t *fpregsetp, int regno)
 {
   alphabsd_fill_fpreg (regcache, (char *) fpregsetp, regno);
 }
@@ -100,7 +101,8 @@ alphabsd_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;
 
@@ -136,7 +138,8 @@ alphabsd_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.027659 seconds and 4 git commands to generate.