mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-29 18:41:27 +00:00
* core-regset.c (fetch_core_registers): Remove HAVE_GREGSET_T
and HAVE_FPREGSET_T checks. Use gdb_gregset_t and gdb_fpregset_t.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2001-08-02 Daniel Jacobowitz <drow@mvista.com>
|
||||
|
||||
* core-regset.c (fetch_core_registers): Remove HAVE_GREGSET_T
|
||||
and HAVE_FPREGSET_T checks. Use gdb_gregset_t and gdb_fpregset_t.
|
||||
|
||||
2001-08-02 Keith Seitz <keiths@redhat.com>
|
||||
|
||||
* defs.h (SLASH_STRING): If not defined, set
|
||||
|
||||
@@ -84,9 +84,8 @@ static void
|
||||
fetch_core_registers (char *core_reg_sect, unsigned core_reg_size, int which,
|
||||
CORE_ADDR reg_addr)
|
||||
{
|
||||
#if defined (HAVE_GREGSET_T) && defined (HAVE_FPREGSET_T)
|
||||
gregset_t gregset;
|
||||
fpregset_t fpregset;
|
||||
gdb_gregset_t gregset;
|
||||
gdb_fpregset_t fpregset;
|
||||
|
||||
if (which == 0)
|
||||
{
|
||||
@@ -113,7 +112,6 @@ fetch_core_registers (char *core_reg_sect, unsigned core_reg_size, int which,
|
||||
supply_fpregset (&fpregset);
|
||||
}
|
||||
}
|
||||
#endif /* defined(HAVE_GREGSET_T) && defined (HAVE_FPREGSET_T) */
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user