diff options
Diffstat (limited to 'bfd/cpu-k1om.c')
-rw-r--r-- | bfd/cpu-k1om.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bfd/cpu-k1om.c b/bfd/cpu-k1om.c index fa030ae..f9958e4 100644 --- a/bfd/cpu-k1om.c +++ b/bfd/cpu-k1om.c @@ -23,6 +23,8 @@ #include "bfd.h" #include "libbfd.h" +extern void * bfd_arch_i386_fill (bfd_size_type, bfd_boolean, bfd_boolean); + static const bfd_arch_info_type bfd_k1om_arch_intel_syntax = { 64, /* 64 bits in a word */ @@ -36,6 +38,7 @@ static const bfd_arch_info_type bfd_k1om_arch_intel_syntax = TRUE, bfd_default_compatible, bfd_default_scan, + bfd_arch_i386_fill, 0 }; @@ -52,5 +55,6 @@ const bfd_arch_info_type bfd_k1om_arch = TRUE, bfd_default_compatible, bfd_default_scan, + bfd_arch_i386_fill, &bfd_k1om_arch_intel_syntax }; |