diff options
author | Richard Henderson <rth@redhat.com> | 2002-01-27 02:43:52 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 2002-01-27 02:43:52 +0000 |
commit | 3b04e72964711ad05337b59eaabb10f4a94d7e0f (patch) | |
tree | 39ef416c0d6b0eeeb96d9d669e91bde2629de668 /gprof/tahoe.c | |
parent | e82380ccbbc6fba0c3b800b82cafb481baa73280 (diff) | |
download | gdb-3b04e72964711ad05337b59eaabb10f4a94d7e0f.zip gdb-3b04e72964711ad05337b59eaabb10f4a94d7e0f.tar.gz gdb-3b04e72964711ad05337b59eaabb10f4a94d7e0f.tar.bz2 |
* i386.c (i386_iscall): Static.
* tahoe.c (indirectchild, tahoe_operandmode): Static.
(tahoe_operandlength, tahoe_reladdr): Static.
* vax.c (indirectchild): Static.
Diffstat (limited to 'gprof/tahoe.c')
-rw-r--r-- | gprof/tahoe.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gprof/tahoe.c b/gprof/tahoe.c index f9f72c0..214309a 100644 --- a/gprof/tahoe.c +++ b/gprof/tahoe.c @@ -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; { |