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/ctfread.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/ctfread.c')
-rw-r--r-- | gdb/ctfread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ctfread.c b/gdb/ctfread.c index 3c506dd..b8d8434 100644 --- a/gdb/ctfread.c +++ b/gdb/ctfread.c @@ -1464,7 +1464,7 @@ scan_partial_symbols (ctf_file_t *cfp, struct objfile *of) 0, language_c, of); } - end_psymtab_common (of, pst); + end_psymtab_common (pst); } /* Read CTF debugging information from a BFD section. This is |