diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2009-12-16 05:18:11 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2009-12-16 05:18:11 +0000 |
commit | 8c43a48b28ad8e92b3e788ae511844eea4f4a801 (patch) | |
tree | 06691241772e09572e9e10b3a09cc34349421e02 /gas/config/tc-i386.c | |
parent | 8cd7925b457188d333760956a2aa06d8aa302fb0 (diff) | |
download | gdb-8c43a48b28ad8e92b3e788ae511844eea4f4a801.zip gdb-8c43a48b28ad8e92b3e788ae511844eea4f4a801.tar.gz gdb-8c43a48b28ad8e92b3e788ae511844eea4f4a801.tar.bz2 |
Replace VEX2SOURCES with XOP2SOURCES.
gas/
2009-12-15 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (build_modrm_byte): Check XOP2SOURCES
instead VEX2SOURCES.
opcodes/
2009-12-15 H.J. Lu <hongjiu.lu@intel.com>
* i386-opc.h (VEX2SOURCES): Renamed to ...
(XOP2SOURCES): This.
Diffstat (limited to 'gas/config/tc-i386.c')
-rw-r--r-- | gas/config/tc-i386.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index eb99acc..0ddf871 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -5311,7 +5311,7 @@ build_modrm_byte (void) else mem = ~0; - if (i.tm.opcode_modifier.vexsources == VEX2SOURCES) + if (i.tm.opcode_modifier.vexsources == XOP2SOURCES) { if (operand_type_check (i.types[0], imm)) i.vex.register_specifier = NULL; |