2002-01-09 Michael Snyder <msnyder@redhat.com>
* i386-linux-nat.c (fill_fpxregset): Make global. (store_fpxregset): Ditto.
This commit is contained in:
parent
db4a10fae4
commit
975aec09bd
2 changed files with 6 additions and 3 deletions
|
@ -1,5 +1,8 @@
|
||||||
2002-01-09 Michael Snyder <msnyder@redhat.com>
|
2002-01-09 Michael Snyder <msnyder@redhat.com>
|
||||||
|
|
||||||
|
* i386-linux-nat.c (fill_fpxregset): Make global.
|
||||||
|
(store_fpxregset): Ditto.
|
||||||
|
|
||||||
* gregset.h (gdb_fpxregset_t): Define.
|
* gregset.h (gdb_fpxregset_t): Define.
|
||||||
(supply_fpxregset): Prototype.
|
(supply_fpxregset): Prototype.
|
||||||
(fill_fpxregset): Prototype.
|
(fill_fpxregset): Prototype.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* Native-dependent code for Linux/x86.
|
/* Native-dependent code for Linux/x86.
|
||||||
Copyright 1999, 2000, 2001 Free Software Foundation, Inc.
|
Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
@ -452,7 +452,7 @@ static void store_fpregs (int tid, int regno) {}
|
||||||
/* Fill GDB's register array with the floating-point and SSE register
|
/* Fill GDB's register array with the floating-point and SSE register
|
||||||
values in *FPXREGSETP. */
|
values in *FPXREGSETP. */
|
||||||
|
|
||||||
static void
|
void
|
||||||
supply_fpxregset (elf_fpxregset_t *fpxregsetp)
|
supply_fpxregset (elf_fpxregset_t *fpxregsetp)
|
||||||
{
|
{
|
||||||
i387_supply_fxsave ((char *) fpxregsetp);
|
i387_supply_fxsave ((char *) fpxregsetp);
|
||||||
|
@ -462,7 +462,7 @@ supply_fpxregset (elf_fpxregset_t *fpxregsetp)
|
||||||
*FPXREGSETP with the value in GDB's register array. If REGNO is
|
*FPXREGSETP with the value in GDB's register array. If REGNO is
|
||||||
-1, do this for all registers. */
|
-1, do this for all registers. */
|
||||||
|
|
||||||
static void
|
void
|
||||||
fill_fpxregset (elf_fpxregset_t *fpxregsetp, int regno)
|
fill_fpxregset (elf_fpxregset_t *fpxregsetp, int regno)
|
||||||
{
|
{
|
||||||
i387_fill_fxsave ((char *) fpxregsetp, regno);
|
i387_fill_fxsave ((char *) fpxregsetp, regno);
|
||||||
|
|
Loading…
Reference in a new issue