diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-05-27 15:18:49 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-05-27 15:18:49 -0400 |
commit | 24b21115f522cd0fbe55986cd914a593576294ef (patch) | |
tree | 6f2f71d9ede68e21d0371cc5db25b50d64de53af /gdb/xtensa-tdep.c | |
parent | 01add95bed9afd5e7815439c3967db976be53f80 (diff) | |
download | gdb-24b21115f522cd0fbe55986cd914a593576294ef.zip gdb-24b21115f522cd0fbe55986cd914a593576294ef.tar.gz gdb-24b21115f522cd0fbe55986cd914a593576294ef.tar.bz2 |
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
Diffstat (limited to 'gdb/xtensa-tdep.c')
-rw-r--r-- | gdb/xtensa-tdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/xtensa-tdep.c b/gdb/xtensa-tdep.c index d1c24a1..2469212 100644 --- a/gdb/xtensa-tdep.c +++ b/gdb/xtensa-tdep.c @@ -768,7 +768,7 @@ xtensa_coprocessor_register_group (struct reggroup *group) static int xtensa_register_reggroup_p (struct gdbarch *gdbarch, int regnum, - struct reggroup *group) + struct reggroup *group) { xtensa_register_t* reg = &gdbarch_tdep (gdbarch)->regmap[regnum]; xtensa_register_type_t type = reg->type; @@ -2852,7 +2852,7 @@ execute_code (struct gdbarch *gdbarch, CORE_ADDR current_pc, CORE_ADDR wb) xtensa_write_register (arreg, a7_saved); } return xtWindowUnderflow; - default: /* Simply skip this insns. */ + default: /* Simply skip this insns. */ continue; } @@ -2965,7 +2965,7 @@ Unable to decode Xtensa Window Interrupt Handler's code.")); int main() { int local_var = 1; - .... + .... } because, for this source code, both Xtensa compilers will generate two |