diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2008-01-03 20:09:38 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2008-01-03 20:09:38 +0000 |
commit | 24995bd6e395a8484e986076ac13db324baed3d5 (patch) | |
tree | fd97d48ff25aa957df09ace1ed607aba09054423 /gas/config | |
parent | 1a6aaad875f1ced67a3de9e9ea5840c90300353f (diff) | |
download | gdb-24995bd6e395a8484e986076ac13db324baed3d5.zip gdb-24995bd6e395a8484e986076ac13db324baed3d5.tar.gz gdb-24995bd6e395a8484e986076ac13db324baed3d5.tar.bz2 |
gas/
2008-01-03 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (match_template): Use the xmmword field
instead of no_xsuf.
opcodes/
2008-01-03 H.J. Lu <hongjiu.lu@intel.com>
* i386-gen.c (opcode_modifiers): Remove No_xSuf.
* i386-opc.h (No_xSuf): Removed.
(CheckSize): Updated.
* i386-tbl.h: Regenerated.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-i386.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index 222ab09..ee98f99 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -3048,7 +3048,7 @@ match_template (void) else if (i.suffix == LONG_DOUBLE_MNEM_SUFFIX) suffix_check.no_ldsuf = 1; else if (i.suffix == XMMWORD_MNEM_SUFFIX) - suffix_check.no_xsuf = 1; + suffix_check.xmmword = 1; for (t = current_templates->start; t < current_templates->end; t++) { @@ -3088,7 +3088,7 @@ match_template (void) && (!t->opcode_modifier.word || !suffix_check.no_wsuf) && (!t->opcode_modifier.dword || !suffix_check.no_lsuf) && (!t->opcode_modifier.qword || !suffix_check.no_qsuf) - && (!t->opcode_modifier.xmmword || !suffix_check.no_xsuf)) + && (!t->opcode_modifier.xmmword || !suffix_check.xmmword)) continue; for (j = 0; j < MAX_OPERANDS; j++) |