aboutsummaryrefslogtreecommitdiff
path: root/opcodes/i386-opc.h
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2008-01-03 20:09:38 +0000
committerH.J. Lu <hjl.tools@gmail.com>2008-01-03 20:09:38 +0000
commit24995bd6e395a8484e986076ac13db324baed3d5 (patch)
treefd97d48ff25aa957df09ace1ed607aba09054423 /opcodes/i386-opc.h
parent1a6aaad875f1ced67a3de9e9ea5840c90300353f (diff)
downloadgdb-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 'opcodes/i386-opc.h')
-rw-r--r--opcodes/i386-opc.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/opcodes/i386-opc.h b/opcodes/i386-opc.h
index 6cbfebd..43bdd64 100644
--- a/opcodes/i386-opc.h
+++ b/opcodes/i386-opc.h
@@ -195,10 +195,8 @@ typedef union i386_cpu_flags
#define No_qSuf (No_sSuf + 1)
/* long double suffix on instruction illegal */
#define No_ldSuf (No_qSuf + 1)
-/* x suffix on instruction illegal */
-#define No_xSuf (No_ldSuf + 1)
/* check memory size on instruction in Intel mode if it is specified. */
-#define CheckSize (No_xSuf + 1)
+#define CheckSize (No_ldSuf + 1)
/* BYTE memory on instruction */
#define Byte (CheckSize + 1)
/* WORD memory on instruction */
@@ -274,7 +272,6 @@ typedef struct i386_opcode_modifier
unsigned int no_ssuf:1;
unsigned int no_qsuf:1;
unsigned int no_ldsuf:1;
- unsigned int no_xsuf:1;
unsigned int checksize:1;
unsigned int byte:1;
unsigned int word:1;