diff options
author | Tom Tromey <tom@tromey.com> | 2020-11-01 09:51:13 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2020-11-01 09:51:14 -0700 |
commit | 089002bba03cf3f546dd63f98e763254ae04d7c1 (patch) | |
tree | ff2450850309dba7c5282bc389e8619f117801fe /gdb/xcoffread.c | |
parent | 525454d654a88a40148e8d3558c69179def61fbf (diff) | |
download | gdb-089002bba03cf3f546dd63f98e763254ae04d7c1.zip gdb-089002bba03cf3f546dd63f98e763254ae04d7c1.tar.gz gdb-089002bba03cf3f546dd63f98e763254ae04d7c1.tar.bz2 |
Remove parameter from end_psymtab_common
The objfile parameter to end_psymtab_common is no longer needed, so
this removes it.
gdb/ChangeLog
2020-11-01 Tom Tromey <tom@tromey.com>
* dbxread.c (dbx_end_psymtab): Update.
* dwarf2/read.c (process_psymtab_comp_unit_reader): Update.
(build_type_psymtabs_reader): Update.
* xcoffread.c (xcoff_end_psymtab): Update.
* ctfread.c (scan_partial_symbols): Update.
* psympriv.h (end_psymtab_common): Update.
* psymtab.c (end_psymtab_common): Remove objfile parameter.
(sort_pst_symbols): Likewise.
Diffstat (limited to 'gdb/xcoffread.c')
-rw-r--r-- | gdb/xcoffread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/xcoffread.c b/gdb/xcoffread.c index 075ebee..3383032 100644 --- a/gdb/xcoffread.c +++ b/gdb/xcoffread.c @@ -2000,7 +2000,7 @@ xcoff_end_psymtab (struct objfile *objfile, legacy_psymtab *pst, first_fun_line_offset; first_fun_line_offset = 0; - end_psymtab_common (objfile, pst); + end_psymtab_common (pst); pst->number_of_dependencies = number_dependencies; if (number_dependencies) |