x86: don't open code is_any_vex_encoding()
authorJan Beulich <jbeulich@novell.com>
Tue, 25 Jun 2019 07:27:49 +0000 (09:27 +0200)
committerJan Beulich <jbeulich@suse.com>
Tue, 25 Jun 2019 07:35:17 +0000 (09:35 +0200)
gas/ChangeLog
gas/config/tc-i386.c

index 2e12363..d2175b6 100644 (file)
@@ -1,5 +1,9 @@
 2019-06-25  Jan Beulich  <jbeulich@suse.com>
 
+       * tc-i386.c (process_suffix): Use is_any_vex_encoding().
+
+2019-06-25  Jan Beulich  <jbeulich@suse.com>
+
        * testsuite/gas/i386/sse2-16bit.d,
        testsuite/gas/i386/sse2-16bit.s: New.
        testsuite/gas/i386/i386.exp: Run new test.
index 3985756..8263b15 100644 (file)
@@ -6386,9 +6386,7 @@ process_suffix (void)
       else if (i.suffix != QWORD_MNEM_SUFFIX
               && !i.tm.opcode_modifier.ignoresize
               && !i.tm.opcode_modifier.floatmf
-              && !i.tm.opcode_modifier.vex
-              && !i.tm.opcode_modifier.vexopcode
-              && !is_evex_encoding (&i.tm)
+              && !is_any_vex_encoding (&i.tm)
               && ((i.suffix == LONG_MNEM_SUFFIX) == (flag_code == CODE_16BIT)
                   || (flag_code == CODE_64BIT
                       && i.tm.opcode_modifier.jumpbyte)))