diff options
author | Doug Evans <dje@google.com> | 2012-04-12 02:09:14 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2012-04-12 02:09:14 +0000 |
commit | 0e50663e56b137681ba887d22f7e3f0088f0cdb3 (patch) | |
tree | 30aa661545284d8a7027d736a3d3fee0c8afe5ee /gdb/dwarf2read.c | |
parent | 52dc124a4dba4f63ffb8ec928cda0e56beb6c81b (diff) | |
download | gdb-0e50663e56b137681ba887d22f7e3f0088f0cdb3.zip gdb-0e50663e56b137681ba887d22f7e3f0088f0cdb3.tar.gz gdb-0e50663e56b137681ba887d22f7e3f0088f0cdb3.tar.bz2 |
* dwarf2read.c (create_all_type_units): Renamed from
create_debug_types_hash_table. All callers updated.
Diffstat (limited to 'gdb/dwarf2read.c')
-rw-r--r-- | gdb/dwarf2read.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index 1fe9cfc..ed2c99e 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -1247,7 +1247,7 @@ static struct type *set_die_type (struct die_info *, struct type *, static void create_all_comp_units (struct objfile *); -static int create_debug_types_hash_table (struct objfile *objfile); +static int create_all_type_units (struct objfile *); static void load_full_comp_unit (struct dwarf2_per_cu_data *); @@ -2952,7 +2952,7 @@ dwarf2_initialize_objfile (struct objfile *objfile) dwarf2_per_objfile->using_index = 1; create_all_comp_units (objfile); - create_debug_types_hash_table (objfile); + create_all_type_units (objfile); dwarf2_per_objfile->quick_file_names_table = create_quick_file_names_table (dwarf2_per_objfile->n_comp_units); @@ -3241,11 +3241,11 @@ add_signatured_type_cu_to_table (void **slot, void *datum) } /* Create the hash table of all entries in the .debug_types section(s). - The result is zero if there is an error (e.g. missing .debug_types section), - otherwise non-zero. */ + The result is zero if there are no .debug_types sections, + otherwise non-zero. */ static int -create_debug_types_hash_table (struct objfile *objfile) +create_all_type_units (struct objfile *objfile) { htab_t types_htab = NULL; struct dwarf2_per_cu_data **iter; @@ -3618,7 +3618,7 @@ process_type_comp_unit (void **slot, void *info) static void build_type_psymtabs (struct objfile *objfile) { - if (! create_debug_types_hash_table (objfile)) + if (! create_all_type_units (objfile)) return; htab_traverse_noresize (dwarf2_per_objfile->signatured_types, |