summaryrefslogtreecommitdiff
path: root/gdb/i386bsd-nat.c
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2004-05-31 10:01:18 +0000
committerMark Kettenis <kettenis@gnu.org>2004-05-31 10:01:18 +0000
commit494367719dfe6155664ab65df1e0a4e22e90b16b (patch)
tree042e168ad74b871ce9d781508541b3d00577d0dc /gdb/i386bsd-nat.c
parent90704f62e3e8171621e8d6cf9ea9c495733ff3b4 (diff)
downloadgdb-494367719dfe6155664ab65df1e0a4e22e90b16b.tar.gz
* i386bsd-nat.c: Don't include "gregset.h".
(supply_gregset, fill_gregset): Make static. (supply_fpregset, fill_fpregset): Remove. * Makefile.in (i386bsd-nat.o): Update dependencies.
Diffstat (limited to 'gdb/i386bsd-nat.c')
-rw-r--r--gdb/i386bsd-nat.c25
1 files changed, 3 insertions, 22 deletions
diff --git a/gdb/i386bsd-nat.c b/gdb/i386bsd-nat.c
index ab4d14cd434..9b6056714a2 100644
--- a/gdb/i386bsd-nat.c
+++ b/gdb/i386bsd-nat.c
@@ -43,8 +43,8 @@ typedef struct reg gregset_t;
typedef struct fpreg fpregset_t;
#endif
-#include "gregset.h"
#include "i386-tdep.h"
+#include "i387-tdep.h"
/* In older BSD versions we cannot get at some of the segment
@@ -120,7 +120,7 @@ cannot_fetch_register (int regnum)
/* Fill GDB's register array with the general-purpose register values
in *GREGSETP. */
-void
+static void
supply_gregset (gregset_t *gregsetp)
{
struct regcache *regcache = current_regcache;
@@ -139,7 +139,7 @@ supply_gregset (gregset_t *gregsetp)
*GREGSETPS with the value in GDB's register array. If REGNUM is -1,
do this for all registers. */
-void
+static void
fill_gregset (gregset_t *gregsetp, int regnum)
{
struct regcache *regcache = current_regcache;
@@ -150,26 +150,7 @@ fill_gregset (gregset_t *gregsetp, int regnum)
regcache_raw_collect (regcache, i, REG_ADDR (gregsetp, i));
}
-#include "i387-tdep.h"
-
-/* Fill GDB's register array with the floating-point register values
- in *FPREGSETP. */
-void
-supply_fpregset (fpregset_t *fpregsetp)
-{
- i387_supply_fsave (current_regcache, -1, fpregsetp);
-}
-
-/* Fill register REGNUM (if it is a floating-point register) in
- *FPREGSETP with the value in GDB's register array. If REGNUM is
- -1, do this for all registers. */
-
-void
-fill_fpregset (fpregset_t *fpregsetp, int regnum)
-{
- i387_collect_fsave (current_regcache, regnum, fpregsetp);
-}
/* Fetch register REGNUM from the inferior. If REGNUM is -1, do this
for all registers (including the floating point registers). */