x86: drop L1OM special case from disassembler
authorJan Beulich <jbeulich@suse.com>
Thu, 24 Mar 2022 08:38:19 +0000 (09:38 +0100)
committerJan Beulich <jbeulich@suse.com>
Thu, 24 Mar 2022 08:38:19 +0000 (09:38 +0100)
There wasn't any real support anyway: None of the sub-architecture
specific insns were ever supported.

opcodes/i386-dis.c

index a30bda0633bb3f089edd8530f8a5f7e1c1bf6164..db13eea18b9a575e0a82c885cbd3b1dc710bd6b3 100644 (file)
@@ -9423,12 +9423,8 @@ print_insn (bfd_vma pc, instr_info *ins)
     }
 
   /* The output looks better if we put 7 bytes on a line, since that
-     puts most long word instructions on a single line.  Use 8 bytes
-     for Intel L1OM.  */
-  if ((ins->info->mach & bfd_mach_l1om) != 0)
-    ins->info->bytes_per_line = 8;
-  else
-    ins->info->bytes_per_line = 7;
+     puts most long word instructions on a single line.  */
+  ins->info->bytes_per_line = 7;
 
   ins->info->private_data = &priv;
   priv.max_fetched = priv.the_buffer;