2010-05-13 Michael Snyder <msnyder@vmware.com>
authorMichael Snyder <msnyder@vmware.com>
Thu, 13 May 2010 22:04:58 +0000 (22:04 +0000)
committerMichael Snyder <msnyder@vmware.com>
Thu, 13 May 2010 22:04:58 +0000 (22:04 +0000)
* bcache.c: White space.

gdb/ChangeLog
gdb/bcache.c

index 409aa7094feeef04872ff69f5019e365e32c2e81..e48c5cca399afbb89cba9c10d6858cd5a1dd2f19 100644 (file)
@@ -1,5 +1,7 @@
 2010-05-13  Michael Snyder  <msnyder@vmware.com>
 
+       * bcache.c: White space.
+
        * gdbarch.sh: White space, add blank lines.
        * arch-utils.c: Ditto.
        * gdbarch.c: Regenerate.
index 4badf6edf02b72baeb55a672c9c7655710fb6e93..7d9180cbec3c36ca56dc2bf5276049d569979a22 100644 (file)
@@ -98,17 +98,17 @@ struct bcache
 unsigned long
 hash(const void *addr, int length)
 {
-               const unsigned char *k, *e;
-               unsigned long h;
-               
-               k = (const unsigned char *)addr;
-               e = k+length;
-               for (h=0; k< e;++k)
-               {
-                               h *=16777619;
-                               h ^= *k;
-               }
-               return (h);
+  const unsigned char *k, *e;
+  unsigned long h;
+
+  k = (const unsigned char *)addr;
+  e = k+length;
+  for (h=0; k< e;++k)
+    {
+      h *=16777619;
+      h ^= *k;
+    }
+  return (h);
 }
 \f
 /* Growing the bcache's hash table.  */
@@ -152,6 +152,7 @@ expand_hash_table (struct bcache *bcache)
   /* Allocate the new table.  */
   {
     size_t new_size = new_num_buckets * sizeof (new_buckets[0]);
+
     new_buckets = (struct bstring **) xmalloc (new_size);
     memset (new_buckets, 0, new_size);
 
@@ -257,6 +258,7 @@ bcache_full (const void *addr, int length, struct bcache *bcache, int *added)
   {
     struct bstring *new
       = obstack_alloc (&bcache->cache, BSTRING_SIZE (length));
+
     memcpy (&new->d.data, addr, length);
     new->length = length;
     new->next = bcache->bucket[hash_index];
@@ -281,6 +283,7 @@ bcache_xmalloc (void)
 {
   /* Allocate the bcache pre-zeroed.  */
   struct bcache *b = XCALLOC (1, struct bcache);
+
   return b;
 }