]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* m68klinux-nat.c (getregs_supplies): Make static.
authorAndreas Schwab <schwab@linux-m68k.org>
Wed, 7 Mar 2012 16:34:39 +0000 (16:34 +0000)
committerAndreas Schwab <schwab@linux-m68k.org>
Wed, 7 Mar 2012 16:34:39 +0000 (16:34 +0000)
(getfpregs_supplies): Likewise.
(have_ptrace_getregs): Likewise.

gdb/ChangeLog
gdb/m68klinux-nat.c

index e54180cc3ef259aa76186247e12f120df9318d1f..9e8c41d1f9f3828a17ae64824b1e663b72505b9c 100644 (file)
@@ -1,3 +1,9 @@
+2012-03-07  Andreas Schwab  <schwab@linux-m68k.org>
+
+       * m68klinux-nat.c (getregs_supplies): Make static.
+       (getfpregs_supplies): Likewise.
+       (have_ptrace_getregs): Likewise.
+
 2012-03-06  Joel Brobecker  <brobecker@adacore.com>
 
        * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
index 60e4373c8c6f23f776f621d5842cf74b1c969362..c7137c0414b25bbd674270da623b0d8048653385 100644 (file)
@@ -69,20 +69,20 @@ static const int regmap[] =
 #define NUM_GREGS (18)
 #define MAX_NUM_REGS (NUM_GREGS + 11)
 
-int
+static int
 getregs_supplies (int regno)
 {
   return 0 <= regno && regno < NUM_GREGS;
 }
 
-int
+static int
 getfpregs_supplies (int regno)
 {
   return M68K_FP0_REGNUM <= regno && regno <= M68K_FPI_REGNUM;
 }
 
 /* Does the current host support the GETREGS request?  */
-int have_ptrace_getregs =
+static int have_ptrace_getregs =
 #ifdef HAVE_PTRACE_GETREGS
   1
 #else