diff options
author | Jason Molenda <jmolenda@apple.com> | 1999-07-07 20:19:36 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1999-07-07 20:19:36 +0000 |
commit | c5aa993b1f4add48fbdc6cc3117059f616e49875 (patch) | |
tree | c809d06515a34428cc8df5f758fbc1b6117d4c30 /gdb/dpx2-nat.c | |
parent | 3a4b77d8bee950afce6f9702aa65dc0e60817a82 (diff) | |
download | gdb-c5aa993b1f4add48fbdc6cc3117059f616e49875.zip gdb-c5aa993b1f4add48fbdc6cc3117059f616e49875.tar.gz gdb-c5aa993b1f4add48fbdc6cc3117059f616e49875.tar.bz2 |
import gdb-1999-07-07 post reformat
Diffstat (limited to 'gdb/dpx2-nat.c')
-rw-r--r-- | gdb/dpx2-nat.c | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/gdb/dpx2-nat.c b/gdb/dpx2-nat.c index 21dc135..d039a13 100644 --- a/gdb/dpx2-nat.c +++ b/gdb/dpx2-nat.c @@ -1,21 +1,22 @@ /* DPX2 host interface. Copyright (C) 1988, 1989, 1991 Free Software Foundation, Inc. -This file is part of GDB. + This file is part of GDB. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. -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. */ + 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. */ #include "defs.h" #include "gdbcore.h" @@ -28,11 +29,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include <sys/user.h> #include <sys/reg.h> #include <sys/utsname.h> - + /* this table must line up with REGISTER_NAMES in tm-68k.h */ /* symbols like 'A0' come from <sys/reg.h> */ -static int regmap[] = +static int regmap[] = { R0, R1, R2, R3, R4, R5, R6, R7, A0, A1, A2, A3, A4, A5, A6, SP, @@ -53,7 +54,7 @@ dpx2_register_u_addr (blockend, regnum) if (regnum < FP0_REGNUM) return (blockend + 4 * regmap[regnum]); else - return (int) &(((struct user *)0)->u_fpstate[regmap[regnum]]); + return (int) &(((struct user *) 0)->u_fpstate[regmap[regnum]]); } /* This is the amount to subtract from u.u_ar0 |