diff options
author | Michael Snyder <msnyder@vmware.com> | 2002-01-09 22:32:16 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2002-01-09 22:32:16 +0000 |
commit | 975aec09bd355bf37a48b77929e1c020936dd443 (patch) | |
tree | f7adea2079fa4e5f64969b10af52f8d3fac69937 /gdb/i386-linux-nat.c | |
parent | db4a10fae49f262f7881c4be50716f9501d7e433 (diff) | |
download | gdb-975aec09bd355bf37a48b77929e1c020936dd443.zip gdb-975aec09bd355bf37a48b77929e1c020936dd443.tar.gz gdb-975aec09bd355bf37a48b77929e1c020936dd443.tar.bz2 |
2002-01-09 Michael Snyder <msnyder@redhat.com>
* i386-linux-nat.c (fill_fpxregset): Make global.
(store_fpxregset): Ditto.
Diffstat (limited to 'gdb/i386-linux-nat.c')
-rw-r--r-- | gdb/i386-linux-nat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/i386-linux-nat.c b/gdb/i386-linux-nat.c index 1b8ea4a..aa2fa65 100644 --- a/gdb/i386-linux-nat.c +++ b/gdb/i386-linux-nat.c @@ -1,5 +1,5 @@ /* 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. @@ -452,7 +452,7 @@ static void store_fpregs (int tid, int regno) {} /* Fill GDB's register array with the floating-point and SSE register values in *FPXREGSETP. */ -static void +void supply_fpxregset (elf_fpxregset_t *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 -1, do this for all registers. */ -static void +void fill_fpxregset (elf_fpxregset_t *fpxregsetp, int regno) { i387_fill_fxsave ((char *) fpxregsetp, regno); |