diff options
author | Michael Snyder <msnyder@vmware.com> | 2010-05-14 00:23:26 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2010-05-14 00:23:26 +0000 |
commit | 6595d32bb250ef0d53a93c91774a284d04988f7e (patch) | |
tree | 2669e2d866744f20e62ab0392e900e721552b148 /gdb/dictionary.c | |
parent | e98d11e779bdb7e136c12ca8a9515ac4bdd3c9c9 (diff) | |
download | gdb-6595d32bb250ef0d53a93c91774a284d04988f7e.zip gdb-6595d32bb250ef0d53a93c91774a284d04988f7e.tar.gz gdb-6595d32bb250ef0d53a93c91774a284d04988f7e.tar.bz2 |
2010-05-13 Michael Snyder <msnyder@vmware.com>
* dictionary.c: Re-indent to GNU coding standard.
Diffstat (limited to 'gdb/dictionary.c')
-rw-r--r-- | gdb/dictionary.c | 46 |
1 files changed, 25 insertions, 21 deletions
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; } |