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 | ca1fa5eef2912262a0a33875e9a23f2e79a72328 (patch) | |
tree | 94a627f6329fbc78155eef2942664819d520e394 /gdb/i386-fbsd-nat.c | |
parent | 2434b0199ddcd9419c55742552953b0a79d00ebc (diff) | |
download | binutils-ca1fa5eef2912262a0a33875e9a23f2e79a72328.zip binutils-ca1fa5eef2912262a0a33875e9a23f2e79a72328.tar.gz binutils-ca1fa5eef2912262a0a33875e9a23f2e79a72328.tar.bz2 |
Use i386_target_description to get tdesc_i386
GDB can call function i386_target_description to get the right target
description rather than tdesc_i386
gdb:
2017-09-04 Yao Qi <yao.qi@linaro.org>
* amd64-fbsd-nat.c (amd64fbsd_read_description): Call
i386_target_description.
* i386-fbsd-nat.c (i386fbsd_read_description): Call
i386_target_description.
* i386-tdep.c (i386_gdbarch_init): Likewise.
Diffstat (limited to 'gdb/i386-fbsd-nat.c')
-rw-r--r-- | gdb/i386-fbsd-nat.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gdb/i386-fbsd-nat.c b/gdb/i386-fbsd-nat.c index dca6c01..ab671ef 100644 --- a/gdb/i386-fbsd-nat.c +++ b/gdb/i386-fbsd-nat.c @@ -139,12 +139,10 @@ i386fbsd_read_description (struct target_ops *ops) xsave_probed = 1; } - if (x86bsd_xsave_len != 0) - { - return i386_target_description (xcr0); - } - else - return tdesc_i386; + if (x86bsd_xsave_len == 0) + xcr0 = X86_XSTATE_SSE_MASK; + + return i386_target_description (xcr0); } #endif |