mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-19 05:42:42 +08:00
2007-10-24 Pedro Alves <pedro_alves@portugalmail.pt>
PR gdb/2341 * sol-thread.c (sol_thread_fetch_registers): Work around gcc 3.4 alias warning bug.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2007-10-24 Pedro Alves <pedro_alves@portugalmail.pt>
|
||||||
|
|
||||||
|
PR gdb/2341
|
||||||
|
* sol-thread.c (sol_thread_fetch_registers): Work around gcc 3.4
|
||||||
|
alias warning bug.
|
||||||
|
|
||||||
2007-10-24 Carlos Eduardo Seo <cseo@linux.vnet.ibm.com>
|
2007-10-24 Carlos Eduardo Seo <cseo@linux.vnet.ibm.com>
|
||||||
|
|
||||||
* symtab.c (find_line_symtab): scan through psymtabs
|
* symtab.c (find_line_symtab): scan through psymtabs
|
||||||
|
@ -484,6 +484,9 @@ sol_thread_fetch_registers (struct regcache *regcache, int regnum)
|
|||||||
td_err_e val;
|
td_err_e val;
|
||||||
prgregset_t gregset;
|
prgregset_t gregset;
|
||||||
prfpregset_t fpregset;
|
prfpregset_t fpregset;
|
||||||
|
gdb_gregset_t *gregset_p = &gregset;
|
||||||
|
gdb_fpregset_t *fpregset_p = &fpregset;
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
int xregsize;
|
int xregsize;
|
||||||
caddr_t xregset;
|
caddr_t xregset;
|
||||||
@ -530,8 +533,8 @@ sol_thread_fetch_registers (struct regcache *regcache, int regnum)
|
|||||||
calling the td routines because the td routines call ps_lget*
|
calling the td routines because the td routines call ps_lget*
|
||||||
which affect the values stored in the registers array. */
|
which affect the values stored in the registers array. */
|
||||||
|
|
||||||
supply_gregset (regcache, (const gdb_gregset_t *) &gregset);
|
supply_gregset (regcache, (const gdb_gregset_t *) gregset_p);
|
||||||
supply_fpregset (regcache, (const gdb_fpregset_t *) &fpregset);
|
supply_fpregset (regcache, (const gdb_fpregset_t *) fpregset_p);
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
/* FIXME: libthread_db doesn't seem to handle this right. */
|
/* FIXME: libthread_db doesn't seem to handle this right. */
|
||||||
|
Reference in New Issue
Block a user