diff options
author | Mark Kettenis <kettenis@gnu.org> | 2000-08-11 19:45:21 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2000-08-11 19:45:21 +0000 |
commit | f0373401b56ac44b27fc13ecd39e5e7fa80b6c28 (patch) | |
tree | 3d7dd1575cc1df2cb3db447216cd0e83bcf93487 /gdb/i386-linux-nat.c | |
parent | f3d219244e0211d01acaec1c0b5d9901a254b69b (diff) | |
download | gdb-f0373401b56ac44b27fc13ecd39e5e7fa80b6c28.zip gdb-f0373401b56ac44b27fc13ecd39e5e7fa80b6c28.tar.gz gdb-f0373401b56ac44b27fc13ecd39e5e7fa80b6c28.tar.bz2 |
* i386-linux-nat.c [! HAVE_PTRACE_GETFPXREGS] (fetch_fpxregs,
store_fpxregs): Return 0.
Diffstat (limited to 'gdb/i386-linux-nat.c')
-rw-r--r-- | gdb/i386-linux-nat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/i386-linux-nat.c b/gdb/i386-linux-nat.c index 0e03d7f..61ebd40 100644 --- a/gdb/i386-linux-nat.c +++ b/gdb/i386-linux-nat.c @@ -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 */ |