* ui-out.c (ui_out_get_field_separator): Remove unused function.
[deliverable/binutils-gdb.git] / gdb / mips-linux-nat.c
index fe0519262ef62d500d4ea93d3b8539297fa6cf86..2b90113d933c29f02d1b3f6767de2838ed288410 100644 (file)
@@ -1,7 +1,7 @@
 /* Native-dependent code for GNU/Linux on MIPS processors.
 
-   Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
-   Free Software Foundation, Inc.
+   Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
+   2011 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -182,7 +182,8 @@ supply_fpregset (struct regcache *regcache, const gdb_fpregset_t *fpregsetp)
   if (mips_isa_regsize (get_regcache_arch (regcache)) == 4)
     mips_supply_fpregset (regcache, (const mips_elf_fpregset_t *) fpregsetp);
   else
-    mips64_supply_fpregset (regcache, (const mips64_elf_fpregset_t *) fpregsetp);
+    mips64_supply_fpregset (regcache,
+                           (const mips64_elf_fpregset_t *) fpregsetp);
 }
 
 void
@@ -192,7 +193,8 @@ fill_fpregset (const struct regcache *regcache,
   if (mips_isa_regsize (get_regcache_arch (regcache)) == 4)
     mips_fill_fpregset (regcache, (mips_elf_fpregset_t *) fpregsetp, regno);
   else
-    mips64_fill_fpregset (regcache, (mips64_elf_fpregset_t *) fpregsetp, regno);
+    mips64_fill_fpregset (regcache,
+                         (mips64_elf_fpregset_t *) fpregsetp, regno);
 }
 
 
@@ -262,7 +264,8 @@ mips64_linux_regsets_fetch_registers (struct regcache *regcache, int regno)
    using PTRACE_SETREGS et al.  */
 
 static void
-mips64_linux_regsets_store_registers (const struct regcache *regcache, int regno)
+mips64_linux_regsets_store_registers (const struct regcache *regcache,
+                                     int regno)
 {
   struct gdbarch *gdbarch = get_regcache_arch (regcache);
   int is_fp;
@@ -393,12 +396,12 @@ enum pt_watch_style {
 
 #define MAX_DEBUG_REGISTER 8
 
-/* A value of zero in a watchlo indicates that it is available. */
+/* A value of zero in a watchlo indicates that it is available.  */
 
 struct mips32_watch_regs
 {
   uint32_t watchlo[MAX_DEBUG_REGISTER];
-  /* Lower 16 bits of watchhi. */
+  /* Lower 16 bits of watchhi.  */
   uint16_t watchhi[MAX_DEBUG_REGISTER];
   /* Valid mask and I R W bits.
    * bit 0 -- 1 if W bit is usable.
@@ -710,7 +713,7 @@ mips_linux_can_use_hw_breakpoint (int type, int cnt, int ot)
 
 /* Target to_stopped_by_watchpoint implementation.  Return 1 if
    stopped by watchpoint.  The watchhi R and W bits indicate the watch
-   register triggered. */
+   register triggered.  */
 
 static int
 mips_linux_stopped_by_watchpoint (void)
@@ -926,7 +929,8 @@ populate_regs_from_watches (struct pt_watch_regs *regs)
    watch.  Return zero on success.  */
 
 static int
-mips_linux_insert_watchpoint (CORE_ADDR addr, int len, int type)
+mips_linux_insert_watchpoint (CORE_ADDR addr, int len, int type,
+                             struct expression *cond)
 {
   struct pt_watch_regs regs;
   struct mips_watchpoint *new_watch;
@@ -975,7 +979,8 @@ mips_linux_insert_watchpoint (CORE_ADDR addr, int len, int type)
    Return zero on success.  */
 
 static int
-mips_linux_remove_watchpoint (CORE_ADDR addr, int len, int type)
+mips_linux_remove_watchpoint (CORE_ADDR addr, int len, int type,
+                             struct expression *cond)
 {
   int retval;
   int deleted_one;
This page took 0.026072 seconds and 4 git commands to generate.