bfd/
[deliverable/binutils-gdb.git] / gdb / alphabsd-tdep.c
index 89c9c30c1b3408004ff08b8ff767baf2a9f27ce9..79741c76fd264d3912a9494879e971661116cf9a 100644 (file)
@@ -1,5 +1,6 @@
-/* Common target dependent code for GDB on Alpha systems running BSD.
-   Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
+/* Common target dependent code Alpha BSD's.
+
+   Copyright (C) 2000, 2001, 2002, 2006 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -15,8 +16,8 @@
 
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
-   Foundation, Inc., 59 Temple Place - Suite 330,
-   Boston, MA 02111-1307, USA.  */
+   Foundation, Inc., 51 Franklin Street, Fifth Floor,
+   Boston, MA 02110-1301, USA.  */
 
 #include "defs.h"
 
@@ -30,26 +31,26 @@ void
 alphabsd_supply_reg (char *regs, int regno)
 {
   /* PC is at slot 32; UNIQUE not present.  */
-  alpha_supply_int_regs (regno, regs, regs + 31*8, NULL);
+  alpha_supply_int_regs (regno, regs, regs + 31 * 8, NULL);
 }
 
 void
 alphabsd_fill_reg (char *regs, int regno)
 {
   /* PC is at slot 32; UNIQUE not present.  */
-  alpha_fill_int_regs (regno, regs, regs + 31*8, NULL);
+  alpha_fill_int_regs (regno, regs, regs + 31 * 8, NULL);
 }
 
 void
 alphabsd_supply_fpreg (char *fpregs, int regno)
 {
   /* FPCR is at slot 33; slot 32 unused.  */
-  alpha_supply_fp_regs (regno, regs, regs + 32*8);
+  alpha_supply_fp_regs (regno, fpregs, fpregs + 32 * 8);
 }
 
 void
 alphabsd_fill_fpreg (char *fpregs, int regno)
 {
   /* FPCR is at slot 33; slot 32 unused.  */
-  alpha_fill_fp_regs (regno, regs, regs + 32*8);
+  alpha_fill_fp_regs (regno, fpregs, fpregs + 32 * 8);
 }
This page took 0.02594 seconds and 4 git commands to generate.