Thu Jul 17 11:38:46 1997 Michael Snyder (msnyder@cleaver.cygnus.com)

* partial-stab.h (case N_BINCL): detect missing partial symtab.
        * dbxread.c: Add a complaint for N_BINCL without a corresponding
        partial symtab.  Remove earlier change of 5/27/97.
This commit is contained in:
Michael Snyder 1997-07-17 18:45:11 +00:00
parent 2aeedbf89e
commit 3822bab9fa
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,9 @@
Thu Jul 17 11:38:46 1997 Michael Snyder (msnyder@cleaver.cygnus.com)
* partial-stab.h (case N_BINCL): detect missing partial symtab.
* dbxread.c: Add a complaint for N_BINCL without a corresponding
partial symtab. Remove earlier change of 5/27/97.
Wed Jul 16 10:38:03 1997 Michael Snyder (msnyder@cleaver.cygnus.com)
* sol-thread.c (sol_thread_[store, fetch]_registers): if

View File

@ -290,6 +290,13 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|| psymtab_language != language_cplus))
psymtab_language = tmp_language;
if (pst == NULL)
{
/* FIXME: we should not get here without a PST to work on.
Attempt to recover. */
complain (&unclaimed_bincl_complaint, namestring, symnum);
continue;
}
add_bincl_to_list (pst, namestring, CUR_SYMBOL_VALUE);
/* Mark down an include file in the current psymtab */