Index: bfd/cpu-k1om.c |
diff --git a/bfd/cpu-k1om.c b/bfd/cpu-k1om.c |
index fa030aef0cc5b12e6bcfc2616166c853e2c8b99e..54b6e58c1dea7ed1b9f2f83821ad3529bae781bd 100644 |
--- a/bfd/cpu-k1om.c |
+++ b/bfd/cpu-k1om.c |
@@ -23,6 +23,9 @@ |
#include "bfd.h" |
#include "libbfd.h" |
+extern void * bfd_arch_i386_short_nop_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 +39,7 @@ static const bfd_arch_info_type bfd_k1om_arch_intel_syntax = |
TRUE, |
bfd_default_compatible, |
bfd_default_scan, |
+ bfd_arch_i386_short_nop_fill, |
0 |
}; |
@@ -52,5 +56,6 @@ const bfd_arch_info_type bfd_k1om_arch = |
TRUE, |
bfd_default_compatible, |
bfd_default_scan, |
+ bfd_arch_i386_short_nop_fill, |
&bfd_k1om_arch_intel_syntax |
}; |