Cast void * to user_fpsimd_state *.
This patch fixes the following build error in GDBserver, gdb/gdbserver/linux-aarch64-low.c: In function 'void aarch64_fill_fpregset(regcache*, void*)': gdb/gdbserver/linux-aarch64-low.c:134:38: error: invalid conversion from 'void*' to 'user_fpsimd_state*' [-fpermissive] struct user_fpsimd_state *regset = buf; ^ gdb/gdbserver/linux-aarch64-low.c: In function 'void aarch64_store_fpregset(regcache*, const void*)': gdb/gdbserver/linux-aarch64-low.c:146:44: error: invalid conversion from 'const void*' to 'const user_fpsimd_state*' [-fpermissive] const struct user_fpsimd_state *regset = buf; ^ gdb/gdbserver: 2015-11-19 Yao Qi <yao.qi@linaro.org> * linux-aarch64-low.c (aarch64_fill_fpregset): Cast buf to struct user_fpsimd_state *. (aarch64_store_fpregset): Likewise.
This commit is contained in:
parent
6a69a054f7
commit
9caa33114e
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2015-11-19 Yao Qi <yao.qi@linaro.org>
|
||||
|
||||
* linux-aarch64-low.c (aarch64_fill_fpregset): Cast buf to
|
||||
struct user_fpsimd_state *.
|
||||
(aarch64_store_fpregset): Likewise.
|
||||
|
||||
2015-11-19 Yao Qi <yao.qi@linaro.org>
|
||||
|
||||
* linux-aarch64-low.c (aarch64_fill_gregset): Cast buf to
|
||||
|
|
|
@ -131,7 +131,7 @@ aarch64_store_gregset (struct regcache *regcache, const void *buf)
|
|||
static void
|
||||
aarch64_fill_fpregset (struct regcache *regcache, void *buf)
|
||||
{
|
||||
struct user_fpsimd_state *regset = buf;
|
||||
struct user_fpsimd_state *regset = (struct user_fpsimd_state *) buf;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < AARCH64_V_REGS_NUM; i++)
|
||||
|
@ -143,7 +143,8 @@ aarch64_fill_fpregset (struct regcache *regcache, void *buf)
|
|||
static void
|
||||
aarch64_store_fpregset (struct regcache *regcache, const void *buf)
|
||||
{
|
||||
const struct user_fpsimd_state *regset = buf;
|
||||
const struct user_fpsimd_state *regset
|
||||
= (const struct user_fpsimd_state *) buf;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < AARCH64_V_REGS_NUM; i++)
|
||||
|
|
Loading…
Add table
Reference in a new issue