]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* i386.c (i386_iscall): Static.
authorRichard Henderson <rth@redhat.com>
Sun, 27 Jan 2002 02:43:52 +0000 (02:43 +0000)
committerRichard Henderson <rth@redhat.com>
Sun, 27 Jan 2002 02:43:52 +0000 (02:43 +0000)
        * tahoe.c (indirectchild, tahoe_operandmode): Static.
        (tahoe_operandlength, tahoe_reladdr): Static.
        * vax.c (indirectchild): Static.

gprof/ChangeLog
gprof/i386.c
gprof/tahoe.c
gprof/vax.c

index 4ae081d2e834ef7eccc89dd330b79c0bbb0c5f93..7a1346f7452a5d5dcb9307a681c9af0f1b9c44d0 100644 (file)
@@ -1,3 +1,10 @@
+2002-01-26  Richard Henderson  <rth@redhat.com>
+
+       * i386.c (i386_iscall): Static.
+       * tahoe.c (indirectchild, tahoe_operandmode): Static.
+       (tahoe_operandlength, tahoe_reladdr): Static.
+       * vax.c (indirectchild): Static.
+
 2002-01-26  Hans-Peter Nilsson  <hp@bitrange.com>
 
        * Makefile.am (install): Depend on install-info.
index 8836dc3e99b70d749fe770a2dbd53982889310d9..e30648fe08d3ab8c8957d613032d196659f4a669 100644 (file)
 #include "hist.h"
 #include "symtab.h"
 
-int i386_iscall PARAMS ((unsigned char *));
+static int i386_iscall PARAMS ((unsigned char *));
 void i386_find_call PARAMS ((Sym *, bfd_vma, bfd_vma));
 
-int
+static int
 i386_iscall (ip)
      unsigned char *ip;
 {
index f9f72c0ad58a9b4a717819d9f09252092f399d79..214309ac34eb1cd86ca1b6bcdfb17f9626d404ce 100644 (file)
@@ -44,15 +44,15 @@ typedef enum tahoe_opermodes tahoe_operandenum;
 /*
  * A symbol to be the child of indirect callf:
  */
-Sym indirectchild;
+static Sym indirectchild;
 
-tahoe_operandenum tahoe_operandmode PARAMS ((unsigned char *));
-char *tahoe_operandname PARAMS ((tahoe_operandenum));
-long tahoe_operandlength PARAMS ((unsigned char *));
-bfd_vma tahoe_reladdr PARAMS ((char *));
+static tahoe_operandenum tahoe_operandmode PARAMS ((unsigned char *));
+static char *tahoe_operandname PARAMS ((tahoe_operandenum));
+static long tahoe_operandlength PARAMS ((unsigned char *));
+static bfd_vma tahoe_reladdr PARAMS ((char *));
 void tahoe_find_call PARAMS ((Sym *, bfd_vma, bfd_vma));
 
-tahoe_operandenum
+static tahoe_operandenum
 tahoe_operandmode (modep)
      unsigned char *modep;
 {
@@ -94,7 +94,7 @@ tahoe_operandmode (modep)
   abort ();
 }
 
-char *
+static char *
 tahoe_operandname (mode)
      tahoe_operandenum mode;
 {
@@ -148,7 +148,7 @@ tahoe_operandname (mode)
   abort ();
 }
 
-long
+static long
 tahoe_operandlength (modep)
      unsigned char *modep;
 {
@@ -186,7 +186,7 @@ tahoe_operandlength (modep)
   abort ();
 }
 
-bfd_vma
+static bfd_vma
 tahoe_reladdr (modep)
      char *modep;
 {
index 9d67430c4ba4364c5d9a54443d7a7a63923a2059..bce1e7218b99871ea131e02e36317ffa849c2871 100644 (file)
@@ -50,8 +50,7 @@ struct modebyte
 /*
  * A symbol to be the child of indirect calls:
  */
-Sym indirectchild;
-
+static Sym indirectchild;
 
 static operandenum vax_operandmode PARAMS ((struct modebyte *));
 static char *vax_operandname PARAMS ((operandenum));