]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
[GDBserver] Initialize the x32 avx target description.
authorPedro Alves <palves@redhat.com>
Tue, 11 Jun 2013 13:32:52 +0000 (13:32 +0000)
committerPedro Alves <palves@redhat.com>
Tue, 11 Jun 2013 13:32:52 +0000 (13:32 +0000)
All target descriptions must be initialized at startup, but this one was forgotten.

gdb/gdbserver/
2013-06-11  Pedro Alves  <palves@redhat.com>

* linux-x86-low.c (initialize_low_arch): Call
init_registers_x32_avx_linux.

gdb/gdbserver/ChangeLog
gdb/gdbserver/linux-x86-low.c

index 604a414ab464fa6b432fab4cacce50bdb56016c5..c73cccfd7354ef3f19fd2db77067a83469b044a5 100644 (file)
@@ -1,3 +1,8 @@
+2013-06-11  Pedro Alves  <palves@redhat.com>
+
+       * linux-x86-low.c (initialize_low_arch): Call
+       init_registers_x32_avx_linux.
+
 2013-06-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
 
        Fix compatibility with Android Bionic.
index a03f512740561182968bdaf183a0f3529dedd952..eeedb7c80cbe88138a30093675296144460ba35e 100644 (file)
@@ -3335,6 +3335,7 @@ initialize_low_arch (void)
   init_registers_amd64_linux ();
   init_registers_amd64_avx_linux ();
   init_registers_x32_linux ();
+  init_registers_x32_avx_linux ();
 
   tdesc_amd64_linux_no_xml = xmalloc (sizeof (struct target_desc));
   copy_target_description (tdesc_amd64_linux_no_xml, tdesc_amd64_linux);