Use htab_up in type copying
This changes create_copied_types_hash to return an htab_up, then modifies the callers to avoid explicit use of htab_delete. gdb/ChangeLog 2020-09-17 Tom Tromey <tom@tromey.com> * value.c (preserve_values): Update. * python/py-type.c (save_objfile_types): Update. * guile/scm-type.c (save_objfile_types): Update. * gdbtypes.h (create_copied_types_hash): Return htab_up. * gdbtypes.c (create_copied_types_hash): Return htab_up. * compile/compile-object-run.c (compile_object_run): Update.
This commit is contained in:
parent
fa9b11648c
commit
6108fd1823
7 changed files with 27 additions and 28 deletions
|
@ -140,14 +140,12 @@ compile_object_run (struct compile_module *module)
|
|||
try
|
||||
{
|
||||
struct type *func_type = SYMBOL_TYPE (func_sym);
|
||||
htab_t copied_types;
|
||||
int current_arg = 0;
|
||||
struct value **vargs;
|
||||
|
||||
/* OBJFILE may disappear while FUNC_TYPE still will be in use. */
|
||||
copied_types = create_copied_types_hash (objfile);
|
||||
func_type = copy_type_recursive (objfile, func_type, copied_types);
|
||||
htab_delete (copied_types);
|
||||
htab_up copied_types = create_copied_types_hash (objfile);
|
||||
func_type = copy_type_recursive (objfile, func_type, copied_types.get ());
|
||||
|
||||
gdb_assert (func_type->code () == TYPE_CODE_FUNC);
|
||||
func_val = value_from_pointer (lookup_pointer_type (func_type),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue