aboutsummaryrefslogtreecommitdiff
path: root/gdb/mips-tdep.c
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@efficios.com>2022-01-31 09:44:46 -0500
committerSimon Marchi <simon.marchi@polymtl.ca>2022-01-31 12:22:47 -0500
commit492325c4b78933e41608c53963d29b1f16affd47 (patch)
treecba5e4a602ae6416e907ba2bfef440fed1d64f1c /gdb/mips-tdep.c
parent8d2ef06e1c220bcfb133a47b98b6287ccabdb587 (diff)
downloadgdb-492325c4b78933e41608c53963d29b1f16affd47.zip
gdb-492325c4b78933e41608c53963d29b1f16affd47.tar.gz
gdb-492325c4b78933e41608c53963d29b1f16affd47.tar.bz2
gdb: fix some clang-tidy readability-misleading-indentation warnings
I have warnings like these showing in my editor all the time, so I thought I'd run clang-tidy with this diagnostic on all the files (that I can compile) and fix them. There is still one warning, in utils.c, but that's because some code is mixed up with preprocessor macros (#ifdef TUI), so I think there no good solution there. Change-Id: I345175fc7dd865318f0fbe61ac026c88c3b6a96b
Diffstat (limited to 'gdb/mips-tdep.c')
-rw-r--r--gdb/mips-tdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c
index e5f8c6b..1c080bb 100644
--- a/gdb/mips-tdep.c
+++ b/gdb/mips-tdep.c
@@ -2063,7 +2063,7 @@ micromips_next_pc (struct regcache *regcache, CORE_ADDR pc)
if (regcache_raw_get_signed (regcache, b0s5_reg (insn >> 16))
!= regcache_raw_get_signed (regcache, b5s5_reg (insn >> 16)))
pc += micromips_relative_offset16 (insn);
- else
+ else
pc += micromips_pc_insn_size (gdbarch, pc);
break;