aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@vmware.com>2010-05-14 00:23:26 +0000
committerMichael Snyder <msnyder@vmware.com>2010-05-14 00:23:26 +0000
commit6595d32bb250ef0d53a93c91774a284d04988f7e (patch)
tree2669e2d866744f20e62ab0392e900e721552b148
parente98d11e779bdb7e136c12ca8a9515ac4bdd3c9c9 (diff)
downloadgdb-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.
-rw-r--r--gdb/ChangeLog2
-rw-r--r--gdb/dictionary.c46
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 <msnyder@vmware.com>
+ * 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;
}