* i386-linux-nat.c [! HAVE_PTRACE_GETFPXREGS] (fetch_fpxregs,

store_fpxregs): Return 0.
This commit is contained in:
Mark Kettenis 2000-08-11 19:45:21 +00:00
parent f3d219244e
commit f0373401b5
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2000-08-11 Mark Kettenis <kettenis@gnu.org>
* i386-linux-nat.c [! HAVE_PTRACE_GETFPXREGS] (fetch_fpxregs,
store_fpxregs): Return 0.
2000-08-11 Andrew Cagney <cagney@lulu.cygnus.com>
* regcache.c (GET_SAVED_REGISTER): Restore definition. Was lost

View File

@ -505,8 +505,8 @@ dummy_sse_values (void)
#else
static int fetch_fpxregs (int tid) {}
static int store_fpxregs (int tid, int regno) {}
static int fetch_fpxregs (int tid) { return 0; }
static int store_fpxregs (int tid, int regno) { return 0; }
static void dummy_sse_values (void) {}
#endif /* HAVE_PTRACE_GETFPXREGS */