diff options
author | Stu Grossman <grossman@cygnus> | 1992-04-04 01:43:01 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1992-04-04 01:43:01 +0000 |
commit | b2de19e3c671f63d86cebe2ec18584e2518db071 (patch) | |
tree | 4b499abc613c8a9b0111bb9d82d6649e57954c7f /gdb/mipsread.c | |
parent | 556f3d9029f10733007a87814d7a46ea0c480be2 (diff) | |
download | gdb-b2de19e3c671f63d86cebe2ec18584e2518db071.zip gdb-b2de19e3c671f63d86cebe2ec18584e2518db071.tar.gz gdb-b2de19e3c671f63d86cebe2ec18584e2518db071.tar.bz2 |
* buildsym.h, dbxread.c, mipsread.c: Add objfile arg to
process_one_symbol.
Diffstat (limited to 'gdb/mipsread.c')
-rw-r--r-- | gdb/mipsread.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/mipsread.c b/gdb/mipsread.c index a790061..d9f1c31 100644 --- a/gdb/mipsread.c +++ b/gdb/mipsread.c @@ -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. */ |