summaryrefslogtreecommitdiff
path: root/gdb/riscv-ravenscar-thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/riscv-ravenscar-thread.c')
-rw-r--r--gdb/riscv-ravenscar-thread.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/riscv-ravenscar-thread.c b/gdb/riscv-ravenscar-thread.c
index 33f8526fcd3..11c88d0148c 100644
--- a/gdb/riscv-ravenscar-thread.c
+++ b/gdb/riscv-ravenscar-thread.c
@@ -70,7 +70,7 @@ riscv_ravenscar_ops::register_offset (struct gdbarch *arch, int regnum)
static void
supply_register_at_address (struct regcache *regcache, int regnum,
- CORE_ADDR register_addr)
+ CORE_ADDR register_addr)
{
struct gdbarch *gdbarch = regcache->arch ();
int buf_size = register_size (gdbarch, regnum);
@@ -99,11 +99,11 @@ riscv_ravenscar_ops::fetch_registers (struct regcache *regcache, int regnum)
int offset = register_offset (gdbarch, current_regnum);
if (offset != -1)
- {
- current_address = thread_descriptor_address + offset;
- supply_register_at_address (regcache, current_regnum,
- current_address);
- }
+ {
+ current_address = thread_descriptor_address + offset;
+ supply_register_at_address (regcache, current_regnum,
+ current_address);
+ }
}
}