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 | 318ec1dccd6d7e58bbb688a4843af7ff0fd5cb4c (patch) | |
tree | 62694f3bd84ed5c765a1baac7a585440dc99a927 /gdb/i386-linux-nat.c | |
parent | 1c47930a2497ecfe77d60150c2aa4fa4981e570c (diff) | |
download | gdb-318ec1dccd6d7e58bbb688a4843af7ff0fd5cb4c.tar.gz |
* 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 0e03d7f59cf..61ebd40066a 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 */ |