• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

GNU Binutils with patches for OS216


Commit MetaInfo

Revisão5a46d0a9f49b7a6e0f82cbd9837d9c1bfb42ea55 (tree)
Hora2017-07-10 20:02:49
AutorYao Qi <yao.qi@lina...>
CommiterYao Qi

Mensagem de Log

Return X86_TDESC_MMX in x86_get_ipa_tdesc_idx

gdb/gdbserver:

2017-07-10 Yao Qi <yao.qi@linaro.org>

* linux-x86-low.c (x86_get_ipa_tdesc_idx): Use X86_TDESC_MMX
instead of 0.

Mudança Sumário

Diff

--- a/gdb/gdbserver/linux-x86-low.c
+++ b/gdb/gdbserver/linux-x86-low.c
@@ -2927,7 +2927,8 @@ x86_get_ipa_tdesc_idx (void)
29272927 if (tdesc == tdesc_i386_avx_avx512_linux)
29282928 return X86_TDESC_AVX_AVX512;
29292929
2930- return 0;
2930+ /* If none tdesc is found, return the one with minimum features. */
2931+ return X86_TDESC_MMX;
29312932 }
29322933
29332934 /* This is initialized assuming an amd64 target.