diff options
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-i386.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index d57e76a..816ce34 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,10 @@ 2009-12-15 H.J. Lu <hongjiu.lu@intel.com> + * config/tc-i386.c (build_modrm_byte): Check XOP2SOURCES + instead VEX2SOURCES. + +2009-12-15 H.J. Lu <hongjiu.lu@intel.com> + * config/tc-i386.c (process_operands): Check vexsources instead of vex3sources. (build_modrm_byte): Check vexsources instead of vex2sources 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; |