* i386-linux-nat.c [! HAVE_PTRACE_GETFPXREGS] (fetch_fpxregs,
store_fpxregs): Return 0.
This commit is contained in:
parent
f3d219244e
commit
f0373401b5
2 changed files with 7 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue