diff options
author | Pedro Alves <palves@redhat.com> | 2013-06-11 13:32:52 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2013-06-11 13:32:52 +0000 |
commit | 7e5aaa093cea562f88d02bd0b4b58c7d8329708c (patch) | |
tree | 290f288422dba9b2fc72aad7c97fded213e5e870 /gdb/gdbserver | |
parent | 221280281041198585f192c1144fc8a74d7e8559 (diff) | |
download | gdb-7e5aaa093cea562f88d02bd0b4b58c7d8329708c.zip gdb-7e5aaa093cea562f88d02bd0b4b58c7d8329708c.tar.gz gdb-7e5aaa093cea562f88d02bd0b4b58c7d8329708c.tar.bz2 |
[GDBserver] Initialize the x32 avx target description.
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.
Diffstat (limited to 'gdb/gdbserver')
-rw-r--r-- | gdb/gdbserver/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/gdbserver/linux-x86-low.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 604a414..c73cccf 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -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. diff --git a/gdb/gdbserver/linux-x86-low.c b/gdb/gdbserver/linux-x86-low.c index a03f512..eeedb7c 100644 --- a/gdb/gdbserver/linux-x86-low.c +++ b/gdb/gdbserver/linux-x86-low.c @@ -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); |