* i386-linux-nat.c [! HAVE_PTRACE_GETFPXREGS] (fetch_fpxregs,
authorMark Kettenis <kettenis@gnu.org>
Fri, 11 Aug 2000 19:45:21 +0000 (19:45 +0000)
committerMark Kettenis <kettenis@gnu.org>
Fri, 11 Aug 2000 19:45:21 +0000 (19:45 +0000)
store_fpxregs): Return 0.

gdb/ChangeLog
gdb/i386-linux-nat.c

index be8be3f269f5ac923ce251ba4ae6c9e93c3b7858..a8550065adc60d78073ba498a140d0d26d9c3f1a 100644 (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
index 0e03d7f59cfbe42e463699d271d3f9004e8bf3a0..61ebd40066a032c34cf2125a6a4a214f06ebb6e5 100644 (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 */
This page took 0.028009 seconds and 4 git commands to generate.