diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2020-02-16 20:10:20 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2020-02-16 20:10:20 -0800 |
commit | ce504911e5c4068a3498eebde4064b24382c7598 (patch) | |
tree | f84b878bc6697156a2c863d05ce0d329e6b2841e /opcodes/i386-init.h | |
parent | dabec65da1b937ea40a30b7a844fbf91782b718a (diff) | |
download | gdb-ce504911e5c4068a3498eebde4064b24382c7598.zip gdb-ce504911e5c4068a3498eebde4064b24382c7598.tar.gz gdb-ce504911e5c4068a3498eebde4064b24382c7598.tar.bz2 |
x86: Don't disable SSE3 when disabling SSE4a
Since SSE3 is independent of SSE4a, don't disable SSE3 when disabling
SSE4a.
* i386-gen.c (cpu_flag_init): Remove CPU_ANY_SSE3_FLAGS from
CPU_ANY_SSE4A_FLAGS.
Diffstat (limited to 'opcodes/i386-init.h')
-rw-r--r-- | opcodes/i386-init.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/i386-init.h b/opcodes/i386-init.h index d4674fc..36660b1 100644 --- a/opcodes/i386-init.h +++ b/opcodes/i386-init.h @@ -1172,7 +1172,7 @@ #define CPU_ANY_SSE4A_FLAGS \ { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \ - 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, \ + 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \ |