2001-11-06 Fred Fish <fnf@redhat.com>
authorFred Fish <fnf@specifix.com>
Tue, 6 Nov 2001 23:38:15 +0000 (23:38 +0000)
committerFred Fish <fnf@specifix.com>
Tue, 6 Nov 2001 23:38:15 +0000 (23:38 +0000)
* complaints.c (info_verbose): Remove unneeded decl, is in defs.h.
* dbxread.c: Ditto
* dwarf2read.c: Ditto.
* dwarfread.c: Ditto.
* exec.c: Ditto.
* hpread.c: Ditto.
* hpread.h: Ditto.
* mdebugread.c: Ditto.
* os9kread.c: Ditto.
* stack.c: Ditto.
* symfile.c: Ditto.
* tracepoint.c: Ditto.

13 files changed:
gdb/ChangeLog
gdb/complaints.c
gdb/dbxread.c
gdb/dwarf2read.c
gdb/dwarfread.c
gdb/exec.c
gdb/hpread.c
gdb/hpread.h
gdb/mdebugread.c
gdb/os9kread.c
gdb/stack.c
gdb/symfile.c
gdb/tracepoint.c

index 89e5d29..5d10493 100644 (file)
@@ -1,3 +1,18 @@
+2001-11-06  Fred Fish  <fnf@redhat.com>
+
+       * complaints.c (info_verbose): Remove unneeded decl, is in defs.h.
+       * dbxread.c: Ditto
+       * dwarf2read.c: Ditto.
+       * dwarfread.c: Ditto.
+       * exec.c: Ditto.
+       * hpread.c: Ditto.
+       * hpread.h: Ditto.
+       * mdebugread.c: Ditto.
+       * os9kread.c: Ditto.
+       * stack.c: Ditto.
+       * symfile.c: Ditto.
+       * tracepoint.c: Ditto.
+
 2001-11-06  Andrew Cagney  <ac131313@redhat.com>
 
        * MAINTAINERS: Update Andrew Cagney's responsibilities.  Mention
index b29d3c6..04e49a2 100644 (file)
@@ -51,9 +51,6 @@ static unsigned int stop_whining = 0;
 
 static int complaint_series = 0;
 
-/* External variables and functions referenced. */
-
-extern int info_verbose;
 \f
 
 /* Functions to handle complaints during symbol reading.  */
index 75a1ba7..2b04043 100644 (file)
@@ -124,10 +124,6 @@ struct symloc
 
 static enum language psymtab_language = language_unknown;
 
-/* Nonzero means give verbose info on gdb action.  From main.c.  */
-
-extern int info_verbose;
-
 /* The BFD for this file -- implicit parameter to next_symbol_text.  */
 
 static bfd *symfile_bfd;
index f9716b2..16a3e23 100644 (file)
@@ -554,9 +554,6 @@ static struct complaint dwarf2_unsupported_const_value_attr =
   "unsupported const value attribute form: '%s'", 0, 0
 };
 
-/* Externals references.  */
-extern int info_verbose;       /* From main.c; nonzero => verbose */
-
 /* local function prototypes */
 
 static void dwarf2_locate_sections (bfd *, asection *, PTR);
index a78b199..6eb0a0b 100644 (file)
@@ -241,7 +241,6 @@ typedef unsigned int DIE_REF;       /* Reference to a DIE */
 
 /* External variables referenced. */
 
-extern int info_verbose;       /* From main.c; nonzero => verbose */
 extern char *warning_pre_print;        /* From utils.c */
 
 /* The DWARF debugging information consists of two major pieces,
index 24048f7..6e4e85b 100644 (file)
@@ -72,8 +72,6 @@ static void init_exec_ops (void);
 
 void _initialize_exec (void);
 
-extern int info_verbose;
-
 /* The target vector for executable files.  */
 
 struct target_ops exec_ops;
index 3f781f4..afd0b0a 100644 (file)
@@ -127,9 +127,6 @@ struct symloc
 #define SYMLOC(p) ((struct symloc *)((p)->read_symtab_private))
 \f
 /* FIXME: Shouldn't this stuff be in a .h file somewhere?  */
-/* Nonzero means give verbose info on gdb action.  */
-extern int info_verbose;
-
 /* Complaints about the symbols we have encountered.  */
 extern struct complaint string_table_offset_complaint;
 extern struct complaint lbrac_unmatched_complaint;
index 5eef32f..85e6a30 100644 (file)
@@ -131,9 +131,6 @@ struct symloc
 #define SYMLOC(p) ((struct symloc *)((p)->read_symtab_private))
 \f
 /* FIXME: Shouldn't this stuff be in a .h file somewhere?  */
-/* Nonzero means give verbose info on gdb action.  */
-extern int info_verbose;
-
 /* Complaints about the symbols we have encountered.  */
 extern struct complaint string_table_offset_complaint;
 extern struct complaint lbrac_unmatched_complaint;
index 8ce2d0f..c9e3490 100644 (file)
@@ -146,11 +146,6 @@ struct symloc
 #define SC_IS_BSS(sc) ((sc) == scBss || (sc) == scSBss)
 #define SC_IS_UNDEF(sc) ((sc) == scUndefined || (sc) == scSUndefined)
 \f
-
-/* Things we import explicitly from other modules */
-
-extern int info_verbose;
-
 /* Various complaints about symbol reading that don't abort the process */
 
 static struct complaint bad_file_number_complaint =
index 591161c..a7448d4 100644 (file)
@@ -95,9 +95,6 @@ static int psymfile_depth = 0;
 /* keep symbol table file nested depth */
 static int symfile_depth = 0;
 
-/* Nonzero means give verbose info on gdb action.  From main.c.  */
-extern int info_verbose;
-
 extern int previous_stab_code;
 
 /* Name of last function encountered.  Used in Solaris to approximate
index 4c7e5fa..d780854 100644 (file)
@@ -108,7 +108,6 @@ struct frame_info *parse_frame_specification (char *);
 static void frame_info (char *, int);
 
 extern int addressprint;       /* Print addresses, or stay symbolic only? */
-extern int info_verbose;       /* Verbosity of symbol reading msgs */
 extern int lines_to_list;      /* # of lines "list" command shows by default */
 
 /* The "selected" stack frame is used by default for local and arg access.
index 010726d..b460862 100644 (file)
@@ -95,8 +95,6 @@ struct complaint unknown_option_complaint =
 
 /* External variables and functions referenced. */
 
-extern int info_verbose;
-
 extern void report_transfer_performance (unsigned long, time_t, time_t);
 
 /* Functions this file defines */
index 57d2ae2..45794e6 100644 (file)
@@ -61,7 +61,6 @@
 #define MAX_AGENT_EXPR_LEN     184
 
 
-extern int info_verbose;
 extern void (*readline_begin_hook) (char *, ...);
 extern char *(*readline_hook) (char *);
 extern void (*readline_end_hook) (void);