* mips-tdep.c (mips_insn16_frame_prev_register)
authorMark Kettenis <kettenis@gnu.org>
Fri, 1 Jul 2005 19:29:46 +0000 (19:29 +0000)
committerMark Kettenis <kettenis@gnu.org>
Fri, 1 Jul 2005 19:29:46 +0000 (19:29 +0000)
(mips_insn32_frame_prev_register, mips_stub_frame_prev_register):
Change type of last argument to `gdb_byte *'.

gdb/ChangeLog
gdb/mips-tdep.c

index e8ca61f734f685d85e85bee38536d6bdd9d783f3..d4390ac072086b9c4172a952f3cbcc310cf4a327 100644 (file)
@@ -1,3 +1,9 @@
+2005-07-01  Mark Kettenis  <kettenis@gnu.org>
+
+       * mips-tdep.c (mips_insn16_frame_prev_register)
+       (mips_insn32_frame_prev_register, mips_stub_frame_prev_register):
+       Change type of last argument to `gdb_byte *'.
+
 2005-07-01  Steve Ellcey  <sje@cup.hp.com>
 
        * MAINTAINERS (Write After Approval): Add myself.
index ca2b6e89cf04549c173a0acd61934a09e0e1494e..670214b423d005d8a87dfa4c84873a8ad7f9c318 100644 (file)
@@ -1659,7 +1659,7 @@ mips_insn16_frame_prev_register (struct frame_info *next_frame,
                                 void **this_cache,
                                 int regnum, int *optimizedp,
                                 enum lval_type *lvalp, CORE_ADDR *addrp,
-                                int *realnump, void *valuep)
+                                int *realnump, gdb_byte *valuep)
 {
   struct mips_frame_cache *info = mips_insn16_frame_cache (next_frame,
                                                           this_cache);
@@ -1979,7 +1979,7 @@ mips_insn32_frame_prev_register (struct frame_info *next_frame,
                                 void **this_cache,
                                 int regnum, int *optimizedp,
                                 enum lval_type *lvalp, CORE_ADDR *addrp,
-                                int *realnump, void *valuep)
+                                int *realnump, gdb_byte *valuep)
 {
   struct mips_frame_cache *info = mips_insn32_frame_cache (next_frame,
                                                           this_cache);
@@ -2073,7 +2073,7 @@ mips_stub_frame_prev_register (struct frame_info *next_frame,
                                 void **this_cache,
                                 int regnum, int *optimizedp,
                                 enum lval_type *lvalp, CORE_ADDR *addrp,
-                                int *realnump, void *valuep)
+                                int *realnump, gdb_byte *valuep)
 {
   struct trad_frame_cache *this_trad_cache
     = mips_stub_frame_cache (next_frame, this_cache);
This page took 0.036735 seconds and 4 git commands to generate.