forked from Imagelibrary/binutils-gdb
gdb: fix sparc build failure of linux-nat
On sparc build failed as:
```
gdb/sparc-linux-nat.c: In member function
'virtual void sparc_linux_nat_target::fetch_registers(regcache*, int)':
gdb/sparc-linux-nat.c:36:37:
error: cannot convert 'regcache*' to 'process_stratum_target*'
36 | { sparc_fetch_inferior_registers (regcache, regnum); }
| ^~~~~~~~
| |
| regcache*
```
The fix adopts gdb/sparc-nat.h API change in d1e93af64a
("gdb: set current thread in sparc_{fetch,collect}_inferior_registers").
gdb/ChangeLog:
* sparc-linux-nat.c (sparc_linux_nat_target): fix sparc build
by passing `process_stratum_target*` parameter.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2021-04-25 Sergei Trofimovich <siarheit@google.com>
|
||||
|
||||
* sparc-linux-nat.c (sparc_linux_nat_target): fix sparc build
|
||||
by passing `process_stratum_target*` parameter.
|
||||
|
||||
2021-04-25 Lancelot Six <lsix@lancelotsix.com>
|
||||
|
||||
PR gdb/22640
|
||||
|
||||
@@ -33,10 +33,10 @@ class sparc_linux_nat_target final : public linux_nat_target
|
||||
public:
|
||||
/* Add our register access methods. */
|
||||
void fetch_registers (struct regcache *regcache, int regnum) override
|
||||
{ sparc_fetch_inferior_registers (regcache, regnum); }
|
||||
{ sparc_fetch_inferior_registers (this, regcache, regnum); }
|
||||
|
||||
void store_registers (struct regcache *regcache, int regnum) override
|
||||
{ sparc_store_inferior_registers (regcache, regnum); }
|
||||
{ sparc_store_inferior_registers (this, regcache, regnum); }
|
||||
};
|
||||
|
||||
static sparc_linux_nat_target the_sparc_linux_nat_target;
|
||||
|
||||
Reference in New Issue
Block a user