aboutsummaryrefslogtreecommitdiff
path: root/gdb/sparc-linux-nat.c
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@ericsson.com>2018-11-26 14:35:03 -0500
committerSimon Marchi <simon.marchi@ericsson.com>2018-11-26 14:35:11 -0500
commited2df75c51551cf9b44f7d94179849565ab5bdda (patch)
tree5c21ca5f4e0577c03fcb8e52c777c059a119ccae /gdb/sparc-linux-nat.c
parent24bce9bbe510c9efa36c0f85fb2f8a93ec8b623e (diff)
downloadgdb-ed2df75c51551cf9b44f7d94179849565ab5bdda.zip
gdb-ed2df75c51551cf9b44f7d94179849565ab5bdda.tar.gz
gdb-ed2df75c51551cf9b44f7d94179849565ab5bdda.tar.bz2
Fix spurious semicolon in sparc-linux-nat.c
Remove a semicolon that should not be there, as reported in PR 23917: CXX sparc-linux-nat.o /home/emaisin/src/binutils-gdb/gdb/sparc-linux-nat.c:39:3: error: expected unqualified-id before ‘{’ token { sparc_store_inferior_registers (regcache, regnum); } ^ Tested by rebuilding the file manually (make sparc-linux-nat.o) in a sparc64-linux-gnu build. gdb/ChangeLog: PR gdb/23917 * sparc-linux-nat.c (sparc_linux_nat_target): Remove extraneous semicolon.
Diffstat (limited to 'gdb/sparc-linux-nat.c')
-rw-r--r--gdb/sparc-linux-nat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/sparc-linux-nat.c b/gdb/sparc-linux-nat.c
index 2df0025..765f24c 100644
--- a/gdb/sparc-linux-nat.c
+++ b/gdb/sparc-linux-nat.c
@@ -35,7 +35,7 @@ public:
void fetch_registers (struct regcache *regcache, int regnum) override
{ sparc_fetch_inferior_registers (regcache, regnum); }
- void store_registers (struct regcache *regcache, int regnum) override;
+ void store_registers (struct regcache *regcache, int regnum) override
{ sparc_store_inferior_registers (regcache, regnum); }
};