diff options
author | Jason Molenda <jmolenda@apple.com> | 1999-08-16 19:57:19 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1999-08-16 19:57:19 +0000 |
commit | 7be570e7ce77920e2e628a03bdfe2d295fc2568f (patch) | |
tree | a49512270bb021f1d5171b362dc973e28c97ca94 /gdb/coffread.c | |
parent | ed288bb597072176e84fc8279707a3f2f475779b (diff) | |
download | gdb-7be570e7ce77920e2e628a03bdfe2d295fc2568f.zip gdb-7be570e7ce77920e2e628a03bdfe2d295fc2568f.tar.gz gdb-7be570e7ce77920e2e628a03bdfe2d295fc2568f.tar.bz2 |
import gdb-1999-08-16 snapshot
Diffstat (limited to 'gdb/coffread.c')
-rw-r--r-- | gdb/coffread.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/coffread.c b/gdb/coffread.c index 29ec665..3ec0b70 100644 --- a/gdb/coffread.c +++ b/gdb/coffread.c @@ -176,6 +176,8 @@ struct coff_symbol unsigned int c_type; }; +extern void stabsread_clear_cache PARAMS ((void)); + static struct type *coff_read_struct_type PARAMS ((int, int, int)); static struct type *decode_base_type PARAMS ((struct coff_symbol *, @@ -735,6 +737,9 @@ coff_symfile_finish (objfile) { mfree (objfile->md, objfile->sym_private); } + + /* Let stabs reader clean up */ + stabsread_clear_cache (); } |