]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - gdb/block.c
gdb, gdbserver, gdbsupport: fix leading space vs tabs issues
[thirdparty/binutils-gdb.git] / gdb / block.c
index 070d3f77697778ab49e29cf0aba580b57bac2822..fc6bfb9c636ac64ad0eaa039d7b44b7ae7006c0e 100644 (file)
@@ -79,9 +79,9 @@ contained_in (const struct block *a, const struct block *b,
       if (a == b)
        return true;
       /* If A is a function block, then A cannot be contained in B,
-         except if A was inlined.  */
+        except if A was inlined.  */
       if (!allow_nested && BLOCK_FUNCTION (a) != NULL && !block_inlined_p (a))
-        return false;
+       return false;
       a = BLOCK_SUPERBLOCK (a);
     }
   while (a != NULL);
@@ -879,14 +879,14 @@ block_find_non_opaque_type_preferred (struct symbol *sym, void *data)
 
 struct blockranges *
 make_blockranges (struct objfile *objfile,
-                  const std::vector<blockrange> &rangevec)
+                 const std::vector<blockrange> &rangevec)
 {
   struct blockranges *blr;
   size_t n = rangevec.size();
 
   blr = (struct blockranges *)
     obstack_alloc (&objfile->objfile_obstack,
-                   sizeof (struct blockranges)
+                  sizeof (struct blockranges)
                   + (n - 1) * sizeof (struct blockrange));
 
   blr->nranges = n;