]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Revert "gdbserver/x86: move no-xml code earlier in x86_linux_read_description"
authorAndrew Burgess <aburgess@redhat.com>
Tue, 26 Mar 2024 18:53:05 +0000 (18:53 +0000)
committerAndrew Burgess <aburgess@redhat.com>
Tue, 26 Mar 2024 18:53:05 +0000 (18:53 +0000)
This reverts commit 0a7bb97ad2f2fe2d18a442dad265051e34eab13e.

gdbserver/linux-x86-low.cc

index 872c3fc69c77e1ebebc2fe4a12c879c59e517b29..04202e355bb44db37d2cd71f1086538f18d881b2 100644 (file)
@@ -891,22 +891,6 @@ x86_linux_read_description (void)
 #endif
     }
 
-  /* If we are not allowed to send an XML target description then we need
-     to use the hard-wired target descriptions.  This corresponds to GDB's
-     default machine for x86.
-
-     This check needs to occur before any returns statements that might
-     generate some alternative target descriptions.  */
-  if (!use_xml)
-    {
-#ifdef __x86_64__
-      if (machine == EM_X86_64)
-       return tdesc_amd64_linux_no_xml.get ();
-      else
-#endif
-       return tdesc_i386_linux_no_xml.get ();
-    }
-
 #if !defined __x86_64__ && defined HAVE_PTRACE_GETFPXREGS
   if (machine == EM_386 && have_ptrace_getfpxregs == -1)
     {
@@ -923,6 +907,17 @@ x86_linux_read_description (void)
     }
 #endif
 
+  if (!use_xml)
+    {
+      /* Don't use XML.  */
+#ifdef __x86_64__
+      if (machine == EM_X86_64)
+       return tdesc_amd64_linux_no_xml.get ();
+      else
+#endif
+       return tdesc_i386_linux_no_xml.get ();
+    }
+
   if (have_ptrace_getregset == TRIBOOL_UNKNOWN)
     {
       uint64_t xstateregs[(X86_XSTATE_SSE_SIZE / sizeof (uint64_t))];