x86: avoid cpu_flags_match() bogusly setting CPU_FLAGS_ARCH_MATCH
authorJan Beulich <jbeulich@novell.com>
Thu, 8 Mar 2018 07:44:12 +0000 (08:44 +0100)
committerJan Beulich <jbeulich@suse.com>
Thu, 8 Mar 2018 07:44:12 +0000 (08:44 +0100)
gas/ChangeLog
gas/config/tc-i386.c

index 78fafb6..683d1bc 100644 (file)
@@ -1,5 +1,10 @@
 2018-03-08  Jan Beulich  <jbeulich@suse.com>
 
+       * config/tc-i386.c (cpu_flags_match): Drop "else" branches
+       setting CPU_FLAGS_ARCH_MATCH.
+
+2018-03-08  Jan Beulich  <jbeulich@suse.com>
+
        * config/tc-i386.c (md_assemble): Extend SSE check conditional.
        * testsuite/gas/i386/ilp32/x86-64-sse-check-none.d,
        testsuite/gas/i386/ilp32/x86-64-sse-check-warn.d,
index 4cf7b9d..0c0b591 100644 (file)
@@ -1740,8 +1740,6 @@ cpu_flags_match (const insn_template *t)
                        match |= CPU_FLAGS_PCLMUL_MATCH;
                    }
                }
-             else
-               match |= CPU_FLAGS_ARCH_MATCH;
            }
          else if (x.bitfield.cpuavx512vl)
            {
@@ -1752,11 +1750,7 @@ cpu_flags_match (const insn_template *t)
                  cpu.bitfield.cpuavx512vl = 0;
                  if (!cpu_flags_all_zero (&cpu))
                    match |= CPU_FLAGS_32BIT_MATCH;
-                 else
-                   match |= CPU_FLAGS_ARCH_MATCH;
                }
-             else
-               match |= CPU_FLAGS_ARCH_MATCH;
            }
          else
            match |= CPU_FLAGS_32BIT_MATCH;