aboutsummaryrefslogtreecommitdiff
path: root/gdb/ChangeLog
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@efficios.com>2020-02-19 16:04:52 -0500
committerSimon Marchi <simon.marchi@efficios.com>2020-02-19 16:04:53 -0500
commit298e9637305ee85f630638ba723494fb208eabad (patch)
treebab777ff33efad69fe544a1b389dcfc614cae496 /gdb/ChangeLog
parent084104828cba3e80b19a4bad9538d32991312d7a (diff)
downloadgdb-298e9637305ee85f630638ba723494fb208eabad.zip
gdb-298e9637305ee85f630638ba723494fb208eabad.tar.gz
gdb-298e9637305ee85f630638ba723494fb208eabad.tar.bz2
gdb: dwarf2/read.c: remove unused objfile parameters/variables
This is a simple cleanup. These functions used to use the objfile's obstack for allocation in the hash tables, but they don't anymore. Remove the unnecessary objfile parameters, which in turn allows removing some local variables. gdb/ChangeLog: * dwarf2/read.c (allocate_signatured_type_table, allocate_dwo_unit_table, allocate_type_unit_groups_table, allocate_dwo_file_hash_table, allocate_dwp_loaded_cutus_table): Remove objfile parameter, update all callers.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r--gdb/ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 6d30272..b4a586c 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,10 @@
+2020-02-19 Simon Marchi <simon.marchi@efficios.com>
+
+ * dwarf2/read.c (allocate_signatured_type_table,
+ allocate_dwo_unit_table, allocate_type_unit_groups_table,
+ allocate_dwo_file_hash_table, allocate_dwp_loaded_cutus_table):
+ Remove objfile parameter, update all callers.
+
2020-02-19 Doug Evans <dje@google.com>
PR rust/25535