]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - bfd/cpu-i386.c
* config/sh/tm-sh.h (BELIEVE_PCC_PROMOTION): Define, so that
[thirdparty/binutils-gdb.git] / bfd / cpu-i386.c
CommitLineData
e89f2fbe
SC
1#include <sysdep.h>
2#include <bfd.h>
3#include "libbfd.h"
4
5
6
7static bfd_arch_info_struct_type arch_info_struct =
8 {
9 32, /* 32 bits in a word */
10 32, /* 32 bits in an address */
11 8, /* 8 bits in a byte */
12 bfd_arch_i386,
13 0, /* only 1 machine */
14 "i386",
15 "i386",
16 true, /* the one and only */
17 bfd_default_compatible,
18 bfd_default_scan ,
19 0,
20 0,
21 };
22
23
24
25
26void DEFUN_VOID(bfd_i386_arch)
27{
28 bfd_arch_linkin(&arch_info_struct);
29}
30
31
32