libiberty/md5: fix strict alias warnings
[deliverable/binutils-gdb.git] / gdb / alphabsd-nat.c
index fe06c7ee1e640392529af9819d796e939b60e1b4..9144cdb25263b3ef6a0bf5949beb46e19ed98969 100644 (file)
@@ -1,7 +1,6 @@
 /* Native-dependent code for Alpha BSD's.
 
-   Copyright (C) 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009
-   Free Software Foundation, Inc.
+   Copyright (C) 2000-2002, 2004-2012 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -66,7 +65,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 +100,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 +137,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.025371 seconds and 4 git commands to generate.