diff options
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-i386.c | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 8196733..ea8fa52 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,9 @@ 2012-05-04 H.J. Lu <hongjiu.lu@intel.com> + * config/tc-i386.c (output_insn): Remove the extra VEX check. + +2012-05-04 H.J. Lu <hongjiu.lu@intel.com> + * config/tc-i386.c (match_template): Improve unsupported error message. diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index 3e47349..62085a0 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -6257,8 +6257,7 @@ check_prefix: if (*q) FRAG_APPEND_1_CHAR (*q); } - - if (i.tm.opcode_modifier.vex) + else { for (j = 0, q = i.prefix; j < ARRAY_SIZE (i.prefix); j++, q++) if (*q) |