aboutsummaryrefslogtreecommitdiff
path: root/gdb/remote-vx960.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/remote-vx960.c')
-rw-r--r--gdb/remote-vx960.c46
1 files changed, 23 insertions, 23 deletions
diff --git a/gdb/remote-vx960.c b/gdb/remote-vx960.c
index bb4fbee..012d1c0 100644
--- a/gdb/remote-vx960.c
+++ b/gdb/remote-vx960.c
@@ -1,28 +1,29 @@
/* i80960-dependent portions of the RPC protocol
used with a VxWorks target
-Contributed by Wind River Systems.
+ Contributed by Wind River Systems.
-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 <stdio.h>
#include "defs.h"
-#include "vx-share/regPacket.h"
+#include "vx-share/regPacket.h"
#include "frame.h"
#include "inferior.h"
#include "wait.h"
@@ -40,7 +41,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#include <sys/time.h>
#include <sys/socket.h>
-#ifdef _AIX /* IBM claims "void *malloc()" not char * */
+#ifdef _AIX /* IBM claims "void *malloc()" not char * */
#define malloc bogon_malloc
#endif
@@ -106,14 +107,14 @@ vx_read_register (regno)
if (target_has_fp)
{
net_read_registers (i960_fpreg_packet, I960_FPREG_PLEN,
- PTRACE_GETFPREGS);
- bcopy (&i960_fpreg_packet[I960_R_FP0],
- &registers[REGISTER_BYTE (FP0_REGNUM)],
- REGISTER_RAW_SIZE (FP0_REGNUM) * 4);
+ PTRACE_GETFPREGS);
+ bcopy (&i960_fpreg_packet[I960_R_FP0],
+ &registers[REGISTER_BYTE (FP0_REGNUM)],
+ REGISTER_RAW_SIZE (FP0_REGNUM) * 4);
}
else
bzero (&registers[REGISTER_BYTE (FP0_REGNUM)],
- REGISTER_RAW_SIZE (FP0_REGNUM) * 4);
+ REGISTER_RAW_SIZE (FP0_REGNUM) * 4);
/* Mark the register cache valid. */
@@ -152,12 +153,11 @@ vx_write_register (regno)
if (target_has_fp)
{
- bcopy (&registers[REGISTER_BYTE (FP0_REGNUM)],
+ bcopy (&registers[REGISTER_BYTE (FP0_REGNUM)],
&i960_fpreg_packet[I960_R_FP0],
REGISTER_RAW_SIZE (FP0_REGNUM) * 4);
net_write_registers (i960_fpreg_packet, I960_FPREG_PLEN,
- PTRACE_SETFPREGS);
+ PTRACE_SETFPREGS);
}
}
-