diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2007-11-01 19:06:54 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2007-11-01 19:06:54 +0000 |
commit | 7ce189b305dfcd2d0c094d763696f71a67baaab3 (patch) | |
tree | e015d3ab2886b817dd7ec19d7893653ba8babc9d /opcodes/i386-opc.h | |
parent | 4a146fc23c49f610976a41458061bd8ec1bd62f8 (diff) | |
download | gdb-7ce189b305dfcd2d0c094d763696f71a67baaab3.zip gdb-7ce189b305dfcd2d0c094d763696f71a67baaab3.tar.gz gdb-7ce189b305dfcd2d0c094d763696f71a67baaab3.tar.bz2 |
gas/
2007-11-01 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (md_assemble): Replace no_xsuf with
no_ldsuf.
(match_template): Likewise.
opcodes/
2007-11-01 H.J. Lu <hongjiu.lu@intel.com>
* i386-gen.c (opcode_modifiers): Replace No_xSuf with
No_ldSuf.
* i386-opc.tbl: Likewise.
* i386-opc.h (No_xSuf): Renamed to ...
(No_ldSuf): This.
(FWait): Updated.
Diffstat (limited to 'opcodes/i386-opc.h')
-rw-r--r-- | opcodes/i386-opc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/opcodes/i386-opc.h b/opcodes/i386-opc.h index 0ec2eaf..27d3e85 100644 --- a/opcodes/i386-opc.h +++ b/opcodes/i386-opc.h @@ -186,10 +186,10 @@ typedef union i386_cpu_flags #define No_sSuf (No_lSuf + 1) /* q suffix on instruction illegal */ #define No_qSuf (No_sSuf + 1) -/* x suffix on instruction illegal */ -#define No_xSuf (No_qSuf + 1) +/* long double suffix on instruction illegal */ +#define No_ldSuf (No_qSuf + 1) /* instruction needs FWAIT */ -#define FWait (No_xSuf + 1) +#define FWait (No_ldSuf + 1) /* quick test for string instructions */ #define IsString (FWait + 1) /* fake an extra reg operand for clr, imul and special register @@ -246,7 +246,7 @@ typedef struct i386_opcode_modifier unsigned int no_lsuf:1; unsigned int no_ssuf:1; unsigned int no_qsuf:1; - unsigned int no_xsuf:1; + unsigned int no_ldsuf:1; unsigned int fwait:1; unsigned int isstring:1; unsigned int regkludge:1; |