* buildsym.h, dbxread.c, mipsread.c: Add objfile arg to

process_one_symbol.
This commit is contained in:
Stu Grossman 1992-04-04 01:43:01 +00:00
parent 556f3d9029
commit b2de19e3c6
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Fri Apr 3 17:41:29 1992 Stu Grossman (grossman at cygnus.com)
* buildsym.h, dbxread.c, mipsread.c: Add objfile arg to
process_one_symbol.
Fri Apr 3 12:17:14 1992 Per Bothner (bothner@cygnus.com)
* munch: Must pre-pend "_" to "initialize" for SYSV style nm.

View File

@ -351,7 +351,8 @@ end_psymtab PARAMS ((struct partial_symtab *, char **, int, int, CORE_ADDR,
struct partial_symtab **, int));
extern void
process_one_symbol PARAMS ((int, int, CORE_ADDR, char *, int));
process_one_symbol PARAMS ((int, int, CORE_ADDR, char *, int,
struct objfile *));
extern int
hashname PARAMS ((char *));

View File

@ -2327,7 +2327,8 @@ psymtab_to_symtab_1(pst, filename)
CORE_ADDR valu = sh->value;
if (MIPS_IS_STAB(sh)) {
int type_code = MIPS_UNMARK_STAB(sh->index);
process_one_symbol (type_code, 0, valu, name, /*FIXME*/ 0);
process_one_symbol (type_code, 0, valu, name, /*FIXME*/ 0,
pst->objfile);
}
else if (sh->st == stLabel && sh->index != indexNil) {
/* Handle encoded stab line number. */