mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 10:35:12 +08:00
* buildsym.h, dbxread.c, mipsread.c: Add objfile arg to
process_one_symbol.
This commit is contained in:
parent
556f3d9029
commit
b2de19e3c6
@ -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.
|
||||
|
@ -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 *));
|
||||
|
@ -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. */
|
||||
|
Loading…
Reference in New Issue
Block a user