diff options
author | Per Bothner <per@bothner.com> | 1991-12-23 23:16:58 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1991-12-23 23:16:58 +0000 |
commit | 7e258d18e0112304099fbefbe910a53659b98a3d (patch) | |
tree | a1dd070cd40879a617d8cbddcf0417abf882a6af /gdb/buildsym.h | |
parent | 3e60a6b1d3064f0e08369dbe0bae64d632fcb773 (diff) | |
download | gdb-7e258d18e0112304099fbefbe910a53659b98a3d.zip gdb-7e258d18e0112304099fbefbe910a53659b98a3d.tar.gz gdb-7e258d18e0112304099fbefbe910a53659b98a3d.tar.bz2 |
Oodles of changes. The most important is adding support for stabs
encapsulated in mips ecoff. See ChangeLog for the gory details.
Diffstat (limited to 'gdb/buildsym.h')
-rw-r--r-- | gdb/buildsym.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/buildsym.h b/gdb/buildsym.h index 2722d5b..80fad8e 100644 --- a/gdb/buildsym.h +++ b/gdb/buildsym.h @@ -59,6 +59,9 @@ extern struct context_stack *push_context (); extern void record_line (); extern void start_symtab (); extern struct symbol *define_symbol (); +extern struct partial_symtab *start_psymtab (); +extern void end_psymtab(); + /* Convert stab register number (from `r' declaration) to a gdb REGNUM. */ @@ -218,6 +221,11 @@ extern CORE_ADDR startup_file_end; /* From blockframe.c */ EXTERN unsigned char processing_gcc_compilation; +/* The type code that process_one_symbol saw on its previous invocation. + Used to detect pairs of N_SO symbols. */ + +EXTERN int previous_stab_code; + /* Setup a define to deal cleanly with the underscore problem */ #ifdef NAMES_HAVE_UNDERSCORE |