diff options
author | Yao Qi <yao.qi@linaro.org> | 2017-09-04 11:33:56 +0100 |
---|---|---|
committer | Yao Qi <yao.qi@linaro.org> | 2017-09-04 11:33:56 +0100 |
commit | badc00202024619e1c868b8cf70fe6351fc028c3 (patch) | |
tree | 5753e8a3f91d9277c700e0b9e362ef414738cbe1 /gdb/i386-go32-tdep.c | |
parent | d78bdb54ac94e1c38dc4b8f0d50b5fd202890887 (diff) | |
download | gdb-badc00202024619e1c868b8cf70fe6351fc028c3.zip gdb-badc00202024619e1c868b8cf70fe6351fc028c3.tar.gz gdb-badc00202024619e1c868b8cf70fe6351fc028c3.tar.bz2 |
Let i386_target_description return tdesc_i386_mmx
This patch remove the usage of tdesc_i386_mmx in i386-go32-tdep.c, and use
i386_target_description to get it instead.
gdb:
2017-09-04 Yao Qi <yao.qi@linaro.org>
* i386-go32-tdep.c: Include x86-xstate.h.
(i386_go32_init_abi): Call i386_target_description.
* i386-tdep.c (i386_target_description): Return tdesc_i386_mmx
if xcr0 is X86_XSTATE_X87_MASK.
* i386-tdep.h (tdesc_i386): Remove the declaration.
(tdesc_i386_mmx): Likewise.
Diffstat (limited to 'gdb/i386-go32-tdep.c')
-rw-r--r-- | gdb/i386-go32-tdep.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/i386-go32-tdep.c b/gdb/i386-go32-tdep.c index 5bd4857..6778e52 100644 --- a/gdb/i386-go32-tdep.c +++ b/gdb/i386-go32-tdep.c @@ -19,6 +19,7 @@ #include "defs.h" #include "i386-tdep.h" +#include "x86-xstate.h" #include "target-descriptions.h" #include "osabi.h" @@ -34,7 +35,7 @@ i386_go32_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch) /* DJGPP does not support the SSE registers. */ if (!tdesc_has_registers (info.target_desc)) - tdep->tdesc = tdesc_i386_mmx; + tdep->tdesc = i386_target_description (X86_XSTATE_X87_MASK); /* Native compiler is GCC, which uses the SVR4 register numbering even in COFF and STABS. See the comment in i386_gdbarch_init, |