Fix sparc-solaris build failure (sparc-sol2-nat.c)
Hello, The recent patch for %fsr handling had a couple of tiny mistakes that cause the build to fail on sparc-solaris. Fixed thusly. gdb/ChangeLog: * sparc-sol2-nat.c (supply_gregset): Fix first parameter in call to sparc_supply_fpregset. (fill_fpregset): Fix first parameter in call to sparc_collect_fpregset. Tested on sparc-solaris by rebuilding GDB. Will check it in. Thanks, -- Joel
This commit is contained in:
parent
8c2b9656fa
commit
b8293cc8fb
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
2012-11-27 Joel Brobecker <brobecker@adacore.com>
|
||||
|
||||
* sparc-sol2-nat.c (supply_gregset): Fix first parameter in
|
||||
call to sparc_supply_fpregset.
|
||||
(fill_fpregset): Fix first parameter in call to
|
||||
sparc_collect_fpregset.
|
||||
|
||||
2012-11-27 Daniel Jacobowitz <dan@codesourcery.com>
|
||||
Kazu Hirata <kazu@codesourcery.com>
|
||||
Yao Qi <yao@codesourcery.com>
|
||||
|
|
|
@ -82,7 +82,7 @@ supply_gregset (struct regcache *regcache, const prgregset_t *gregs)
|
|||
void
|
||||
supply_fpregset (struct regcache *regcache, const prfpregset_t *fpregs)
|
||||
{
|
||||
sparc_supply_fpregset (sparc_sol2_fpregset, regcache, -1, fpregs);
|
||||
sparc_supply_fpregset (&sparc_sol2_fpregset, regcache, -1, fpregs);
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -95,7 +95,7 @@ void
|
|||
fill_fpregset (const struct regcache *regcache,
|
||||
prfpregset_t *fpregs, int regnum)
|
||||
{
|
||||
sparc_collect_fpregset (sparc_sol2_fpregset, regcache, regnum, fpregs);
|
||||
sparc_collect_fpregset (&sparc_sol2_fpregset, regcache, regnum, fpregs);
|
||||
}
|
||||
|
||||
/* Provide a prototype to silence -Wmissing-prototypes. */
|
||||
|
|
Loading…
Add table
Reference in a new issue