bfd/
[deliverable/binutils-gdb.git] / bfd / cpu-i386.c
index 25b7e249bd7458802cf1b82e2c5b813a438bffe2..272c7196242f762da0ec7b5634cf0791f4407fdd 100644 (file)
@@ -22,22 +22,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 #include "sysdep.h"
 #include "libbfd.h"
 
-/* Don't mix 32 bit and 64 bit files.  */
-
-static const bfd_arch_info_type *i386_compatible
-  PARAMS ((const bfd_arch_info_type *, const bfd_arch_info_type *));
-
-static const bfd_arch_info_type *
-i386_compatible (a, b)
-     const bfd_arch_info_type *a;
-     const bfd_arch_info_type *b;
-{
-  if (a->bits_per_word != b->bits_per_word)
-    return NULL;
-
-  return bfd_default_compatible (a, b);
-}
-  
 const bfd_arch_info_type bfd_i386_arch_intel_syntax =
 {
   32,  /* 32 bits in a word */
@@ -48,8 +32,8 @@ const bfd_arch_info_type bfd_i386_arch_intel_syntax =
   "i386:intel",
   "i386:intel",
   3,
-  true,
-  i386_compatible,
+  TRUE,
+  bfd_default_compatible,
   bfd_default_scan ,
   0,
 };
@@ -60,11 +44,11 @@ const bfd_arch_info_type bfd_x86_64_arch_intel_syntax =
   8,  /* 8 bits in a byte */
   bfd_arch_i386,
   bfd_mach_x86_64_intel_syntax,
-  "x86-64:intel",
-  "x86-64:intel",
+  "i386:intel",
+  "i386:x86-64:intel",
   3,
-  true,
-  i386_compatible,
+  TRUE,
+  bfd_default_compatible,
   bfd_default_scan ,
   &bfd_i386_arch_intel_syntax,
 };
@@ -78,8 +62,8 @@ static const bfd_arch_info_type i8086_arch =
   "i8086",
   "i8086",
   3,
-  false,
-  i386_compatible,
+  FALSE,
+  bfd_default_compatible,
   bfd_default_scan ,
   &bfd_x86_64_arch_intel_syntax,
 };
@@ -91,11 +75,11 @@ const bfd_arch_info_type bfd_x86_64_arch =
   8,  /* 8 bits in a byte */
   bfd_arch_i386,
   bfd_mach_x86_64,
-  "x86-64",
-  "x86-64",
+  "i386",
+  "i386:x86-64",
   3,
-  true,
-  i386_compatible,
+  TRUE,
+  bfd_default_compatible,
   bfd_default_scan ,
   &i8086_arch,
 };
@@ -110,8 +94,8 @@ const bfd_arch_info_type bfd_i386_arch =
   "i386",
   "i386",
   3,
-  true,
-  i386_compatible,
+  TRUE,
+  bfd_default_compatible,
   bfd_default_scan ,
   &bfd_x86_64_arch
 };
This page took 0.02574 seconds and 4 git commands to generate.