]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
reformat parameters of gdb/psymtab.c::recursively_search_psymtabs
authorJoel Brobecker <brobecker@adacore.com>
Thu, 4 Oct 2018 22:04:13 +0000 (18:04 -0400)
committerJoel Brobecker <brobecker@adacore.com>
Thu, 4 Oct 2018 22:04:13 +0000 (18:04 -0400)
This is just to make sure one of the parameters doesn't end past
the 80 characters limit. And while at it, since all parameters were
on their own line except the first two that were listed on the same
line, it felf more consistent to just split them to have each and
every parameter on their own line.

gdb/ChangeLog:

        * psymtab.c (recursively_search_psymtabs): Reformat parameters
        to avoid exceeding 80 characters per line limit.

Tested by rebuilding GDB on x86_64-linux.

gdb/ChangeLog
gdb/psymtab.c

index 34cf536e14cf1b19bb2c56b5a2a99ce4919287fe..d026da0ccc9d8dae9b0eea047c420fe4c6c2f7bf 100644 (file)
@@ -1,3 +1,8 @@
+2018-10-04  Joel Brobecker  <brobecker@adacore.com>
+
+       * psymtab.c (recursively_search_psymtabs): Reformat parameters
+       to avoid exceeding 80 characters per line limit.
+
 2018-10-04  Tom Tromey  <tom@tromey.com>
 
        * symfile.c (syms_from_objfile_1, finish_new_objfile)
index 274d56734c9d04170fc5f21f8858f1b58bd00ad7..915e4fb58232e42c8e09bdfabcc0676c8ee8e20d 100644 (file)
@@ -1230,7 +1230,9 @@ psym_map_matching_symbols (struct objfile *objfile,
 
 static bool
 recursively_search_psymtabs
-  (struct partial_symtab *ps, struct objfile *objfile, enum search_domain domain,
+  (struct partial_symtab *ps,
+   struct objfile *objfile,
+   enum search_domain domain,
    const lookup_name_info &lookup_name,
    gdb::function_view<expand_symtabs_symbol_matcher_ftype> sym_matcher)
 {