mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-30 07:49:07 +08:00
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.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2018-11-26 Simon Marchi <simon.marchi@ericsson.com>
|
||||||
|
|
||||||
|
PR gdb/23917
|
||||||
|
* sparc-linux-nat.c (sparc_linux_nat_target): Remove extraneous
|
||||||
|
semicolon.
|
||||||
|
|
||||||
2018-11-26 Pedro Alves <palves@redhat.com>
|
2018-11-26 Pedro Alves <palves@redhat.com>
|
||||||
|
|
||||||
* procfs.c (procfs_notice_thread): Replace uses of
|
* procfs.c (procfs_notice_thread): Replace uses of
|
||||||
|
@ -35,7 +35,7 @@ public:
|
|||||||
void fetch_registers (struct regcache *regcache, int regnum) override
|
void fetch_registers (struct regcache *regcache, int regnum) override
|
||||||
{ sparc_fetch_inferior_registers (regcache, regnum); }
|
{ 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); }
|
{ sparc_store_inferior_registers (regcache, regnum); }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user