gdb: fix tab after space indentation issues

I spotted some indentation issues where we had some spaces followed by
tabs at beginning of line, that I wanted to fix.  So while at it, I did
a quick grep to find and fix all I could find.

gdb/ChangeLog:

	* Fix tab after space indentation issues throughout.

Change-Id: I1acb414dd9c593b474ae2b8667496584df4316fd
This commit is contained in:
Simon Marchi 2021-05-27 15:18:49 -04:00
parent 01add95bed
commit 24b21115f5
46 changed files with 142 additions and 138 deletions

View file

@ -1,3 +1,7 @@
2021-05-27 Simon Marchi <simon.marchi@polymtl.ca>
* Fix tab after space indentation issues throughout.
2021-05-27 Simon Marchi <simon.marchi@polymtl.ca>
* Fix some indentation mistakes throughout.

View file

@ -121,8 +121,8 @@ default_macro_scope (void)
symbol files loaded, then get_current_or_default would raise an
error. But `set width' shouldn't raise an error just because
it can't decide which scope to macro-expand its argument in. */
struct symtab_and_line cursal =
get_current_source_symtab_and_line ();
struct symtab_and_line cursal
= get_current_source_symtab_and_line ();
sal.symtab = cursal.symtab;
sal.line = cursal.line;

View file

@ -1406,8 +1406,8 @@ sh_return_value_nofpu (struct gdbarch *gdbarch, struct value *function,
{
struct type *func_type = function ? value_type (function) : NULL;
if (sh_use_struct_convention_nofpu (
sh_is_renesas_calling_convention (func_type), type))
if (sh_use_struct_convention_nofpu
(sh_is_renesas_calling_convention (func_type), type))
return RETURN_VALUE_STRUCT_CONVENTION;
if (writebuf)
sh_store_return_value_nofpu (type, regcache, writebuf);