aboutsummaryrefslogtreecommitdiff
path: root/gdb/dwarf2/abbrev-cache.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/dwarf2/abbrev-cache.c')
-rw-r--r--gdb/dwarf2/abbrev-cache.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/dwarf2/abbrev-cache.c b/gdb/dwarf2/abbrev-cache.c
index 6de81cd..73df4d7 100644
--- a/gdb/dwarf2/abbrev-cache.c
+++ b/gdb/dwarf2/abbrev-cache.c
@@ -43,8 +43,8 @@ abbrev_cache::eq_table (const void *lhs, const void *rhs)
abbrev_cache::abbrev_cache ()
: m_tables (htab_create_alloc (20, hash_table, eq_table,
- htab_delete_entry<abbrev_table>,
- xcalloc, xfree))
+ htab_delete_entry<abbrev_table>, xcalloc,
+ xfree))
{
}
@@ -56,9 +56,9 @@ abbrev_cache::add (abbrev_table_up table)
return;
search_key key = { table->section, table->sect_off };
- void **slot = htab_find_slot_with_hash (m_tables.get (), &key,
- to_underlying (table->sect_off),
- INSERT);
+ void **slot
+ = htab_find_slot_with_hash (m_tables.get (), &key,
+ to_underlying (table->sect_off), INSERT);
/* If this one already existed, then it should have been reused. */
gdb_assert (*slot == nullptr);
*slot = (void *) table.release ();