/* BFD support for the Intel 386 architecture.
- Copyright 1992, 1994, 1995, 1996, 1998, 2000, 2001
+ Copyright 1992, 1994, 1995, 1996, 1998, 2000, 2001, 2002
Free Software Foundation, Inc.
This file is part of BFD, the Binary File Descriptor library.
#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 */
"i386:intel",
3,
true,
- bfd_default_compatible,
+ i386_compatible,
bfd_default_scan ,
0,
};
"x86-64:intel",
3,
true,
- bfd_default_compatible,
+ i386_compatible,
bfd_default_scan ,
&bfd_i386_arch_intel_syntax,
};
"i8086",
3,
false,
- bfd_default_compatible,
+ i386_compatible,
bfd_default_scan ,
&bfd_x86_64_arch_intel_syntax,
};
"x86-64",
3,
true,
- bfd_default_compatible,
+ i386_compatible,
bfd_default_scan ,
&i8086_arch,
};
"i386",
3,
true,
- bfd_default_compatible,
+ i386_compatible,
bfd_default_scan ,
&bfd_x86_64_arch
};