Avoid unused variable warning on Linux/x86-64.

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.
This commit is contained in:
H.J. Lu 2010-04-12 13:18:13 +00:00
parent fc8eb08a3a
commit 59e0401339
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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.
2010-04-11 Pedro Alves <pedro@codesourcery.com>
GDBserver disconnected tracing support.

View File

@ -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