diff --git a/gas/ChangeLog b/gas/ChangeLog index fdec78bfa22..e3e1c4749f9 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2020-06-29 H.J. Lu + + * tc-i386.c (build_vex_prefix): Support VEX base opcode length > 1. + (md_assemble): Don't process ImmExt without operands. + 2020-06-29 Hans-Peter Nilsson PR gas/25331 diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index ae2a2c1a536..be894782a45 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -3664,7 +3664,7 @@ build_vex_prefix (const insn_template *t) } } - switch ((i.tm.base_opcode >> 8) & 0xff) + switch ((i.tm.base_opcode >> (i.tm.opcode_length << 3)) & 0xff) { case 0: implied_prefix = 0; @@ -4873,12 +4873,8 @@ md_assemble (char *line) if (!process_operands ()) return; } - else + else if (!quiet_warnings && i.tm.opcode_modifier.ugh) { - if (i.tm.opcode_modifier.immext) - process_immext (); - - if (!quiet_warnings && i.tm.opcode_modifier.ugh) /* UnixWare fsub no args is alias for fsubp, fadd -> faddp, etc. */ as_warn (_("translating to `%sp'"), i.tm.name); }