2004-10-30 Andrew Cagney <cagney@gnu.org>
authorAndrew Cagney <cagney@redhat.com>
Sat, 30 Oct 2004 20:11:36 +0000 (20:11 +0000)
committerAndrew Cagney <cagney@redhat.com>
Sat, 30 Oct 2004 20:11:36 +0000 (20:11 +0000)
* mips-tdep.h (mips_abi_regsize): Declare.
* mips-tdep.c (mips_abi_regsize): Make non-static.

gdb/ChangeLog
gdb/mips-tdep.c
gdb/mips-tdep.h

index 3527a3ba3ae285910c9704e109a63cf9bc166f16..b7ed6015aa1731aafb782b505befe0382d33339b 100644 (file)
@@ -1,8 +1,11 @@
 2004-10-30  Andrew Cagney  <cagney@gnu.org>
 
+       * mips-tdep.h (mips_abi_regsize): Declare.
+       * mips-tdep.c (mips_abi_regsize): Make non-static.
+
        * mips-tdep.c (gdb_print_insn_mips): Simplify.
        (make_mips16_addr): Delete.
-       
+
 2004-10-30  Mark Kettenis  <kettenis@gnu.org>
 
        * i386-sol2-nat.c: New file.
index bddf0a37289a2fdeba9c6d0e520f212c77a801db..ea09f95995002e043bb74f841d903ee9104e9818 100644 (file)
@@ -259,7 +259,7 @@ mips_isa_regsize (struct gdbarch *gdbarch)
 
 static const char *mips_abi_regsize_string = size_auto;
 
-static unsigned int
+unsigned int
 mips_abi_regsize (struct gdbarch *gdbarch)
 {
   if (mips_abi_regsize_string == size_auto)
index e2bda3fb69ccc5121a3c95db2179f34a58f5f0e7..e90346e9877db8529e4a7a5daefa3e047f383071 100644 (file)
@@ -95,4 +95,7 @@ extern void mips_software_single_step (enum target_signal, int);
    function.  */
 extern int mips_pc_is_mips16 (bfd_vma memaddr);
 
+/* Return the currently configured (or set) saved register size. */
+extern unsigned int mips_abi_regsize (struct gdbarch *gdbarch);
+
 #endif /* MIPS_TDEP_H */