This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: Avoid unused variable warning on Linux/x86-64


I checked in this patch to avoid unused variable warning on
Linux/x86-64.


H.J.
---
2010-04-12  H.J. Lu  <hongjiu.lu@intel.com>

	* linux-x86-low.c (x86_linux_update_xmltarget): Avoid unused
	variable warning on Linux/x86-64.

diff --git a/gdb/gdbserver/linux-x86-low.c b/gdb/gdbserver/linux-x86-low.c
index d79713f..1c28279 100644
--- a/gdb/gdbserver/linux-x86-low.c
+++ b/gdb/gdbserver/linux-x86-low.c
@@ -834,7 +834,7 @@ x86_linux_update_xmltarget (void)
   struct regset_info *regset;
   static unsigned long long xcr0;
   static int have_ptrace_getregset = -1;
-#ifdef HAVE_PTRACE_GETFPXREGS
+#if !defined(__x86_64__) && defined(HAVE_PTRACE_GETFPXREGS)
   static int have_ptrace_getfpxregs = -1;
 #endif
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]