From 6595d32bb250ef0d53a93c91774a284d04988f7e Mon Sep 17 00:00:00 2001 From: Michael Snyder Date: Fri, 14 May 2010 00:23:26 +0000 Subject: [PATCH] 2010-05-13 Michael Snyder * dictionary.c: Re-indent to GNU coding standard. --- gdb/ChangeLog | 2 ++ gdb/dictionary.c | 46 +++++++++++++++++++++++++--------------------- 2 files changed, 27 insertions(+), 21 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b76b8d6..11b4d71 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,7 @@ 2010-05-13 Michael Snyder + * dictionary.c: Re-indent to GNU coding standard. + * charset.c: White space. * c-lang.c: White space. * cli-out.c: White space. diff --git a/gdb/dictionary.c b/gdb/dictionary.c index e3617cf..e1c2010 100644 --- a/gdb/dictionary.c +++ b/gdb/dictionary.c @@ -724,21 +724,24 @@ expand_hashtable (struct dictionary *dict) DICT_HASHED_NBUCKETS (dict) = new_nbuckets; DICT_HASHED_BUCKETS (dict) = new_buckets; - for (i = 0; i < old_nbuckets; ++i) { - struct symbol *sym, *next_sym; - - sym = old_buckets[i]; - if (sym != NULL) { - for (next_sym = sym->hash_next; - next_sym != NULL; - next_sym = sym->hash_next) { - insert_symbol_hashed (dict, sym); - sym = next_sym; - } - - insert_symbol_hashed (dict, sym); + for (i = 0; i < old_nbuckets; ++i) + { + struct symbol *sym, *next_sym; + + sym = old_buckets[i]; + if (sym != NULL) + { + for (next_sym = sym->hash_next; + next_sym != NULL; + next_sym = sym->hash_next) + { + insert_symbol_hashed (dict, sym); + sym = next_sym; + } + + insert_symbol_hashed (dict, sym); + } } - } xfree (old_buckets); } @@ -821,13 +824,14 @@ add_symbol_linear_expandable (struct dictionary *dict, int nsyms = ++DICT_LINEAR_NSYMS (dict); /* Do we have enough room? If not, grow it. */ - if (nsyms > DICT_LINEAR_EXPANDABLE_CAPACITY (dict)) { - DICT_LINEAR_EXPANDABLE_CAPACITY (dict) *= 2; - DICT_LINEAR_SYMS (dict) - = xrealloc (DICT_LINEAR_SYMS (dict), - DICT_LINEAR_EXPANDABLE_CAPACITY (dict) - * sizeof (struct symbol *)); - } + if (nsyms > DICT_LINEAR_EXPANDABLE_CAPACITY (dict)) + { + DICT_LINEAR_EXPANDABLE_CAPACITY (dict) *= 2; + DICT_LINEAR_SYMS (dict) + = xrealloc (DICT_LINEAR_SYMS (dict), + DICT_LINEAR_EXPANDABLE_CAPACITY (dict) + * sizeof (struct symbol *)); + } DICT_LINEAR_SYM (dict, nsyms - 1) = sym; } -- 2.7.4